-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.58 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (51 loc) · 1.58 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
[package]
name = "postil-cli"
version = "0.9.17"
edition = "2024"
description = "Postil: a low-noise AI review gate. Silent on clean PRs, hard gate on real risk."
license = "Apache-2.0"
repository = "https://github.com/postil-dev/postil-cli"
[[bin]]
name = "postil"
path = "src/main.rs"
[lib]
name = "postil_cli"
path = "src/lib.rs"
[features]
# Release binaries include the hermetic candidate-admission path so model
# qualification exercises the exact bytes users receive. Runtime activation
# still requires the guarded CI, loopback capture, and candidate profile inputs.
default = ["qualification-candidate"]
qualification-candidate = []
[dependencies]
aho-corasick = "1.1.4"
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
dirs = "6.0.0"
fs2 = "0.4.3"
futures = "0.3.32"
globset = "0.4.18"
hickory-resolver = "0.26.1"
httpdate = "1.0.3"
libc = "0.2.186"
memmap2 = "0.9.11"
owo-colors = "4.3.0"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "rustls", "charset"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.150", features = ["raw_value"] }
sha1 = "0.11.0"
sha2 = "0.11.0"
similar = "3.1.1"
syn = { version = "2", features = ["full", "visit"] }
tempfile = "3.27.0"
time = { version = "0.3.54", features = ["parsing", "formatting"] }
tokio = { version = "1.52.3", features = ["rt-multi-thread", "macros", "process", "signal", "time"] }
toml = "1.1.2"
yaml_serde = "0.10.4"
[build-dependencies]
serde_json = "1.0.150"
[dev-dependencies]
assert_cmd = "2.2.2"
csv = "1.4.0"
predicates = "3.1.4"
wiremock = "0.6.5"