-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (60 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (60 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "plan-to-git"
version = "0.21.0"
edition = "2021"
description = "Capture agent plans and sync them to GitHub pull requests"
readme = "README.md"
license = "Unlicense"
keywords = ["agents", "github", "pull-request", "codex"]
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/ProverCoderAI/plan-to-git"
documentation = "https://github.com/ProverCoderAI/plan-to-git"
rust-version = "1.85"
# Narrow allowlist of files shipped in the published `.crate` archive.
# Keeping this list tight prevents docs, case studies, generated CI artifacts,
# changelog fragments, and experiments from silently inflating the release
# archive past the crates.io 10 MiB upload limit. See issue #58.
include = [
"src/**/*.rs",
"examples/**/*.rs",
"/README.md",
"/LICENSE",
"/CHANGELOG.md",
]
[lib]
name = "plan_to_git"
path = "src/lib.rs"
[[bin]]
name = "plan-to-git"
path = "src/main.rs"
[dependencies]
clap = { version = "4.4", features = ["derive", "env"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "std"] }
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
[dev-dependencies]
tempfile = "3"
walkdir = "2"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
# Allow some common patterns
module_name_repetitions = "allow"
too_many_lines = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[[test]]
name = "unit"
path = "tests/unit/mod.rs"
[[test]]
name = "integration"
path = "tests/integration/mod.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true