Skip to main content

max / makenotwork

2.0 KB · 56 lines History Blame Raw
1 [package]
2 name = "bento-driver"
3 version = "0.1.0"
4 edition = "2024"
5 license = "MIT"
6 description = "Thin agent-driven release driver: runs the proven macOS recipe (build -> sign -> notarize -> staple -> verify) on a build host via the ops-exec executor, then pulls the artifact. A focused one-shot path; bentod (daemon + TUI) now runs the same recipes through the same ops-exec executors, including AgentRpc for the in-session macOS sign steps."
7
8 [[bin]]
9 name = "bento-release-macos"
10 path = "src/main.rs"
11
12 [dependencies]
13 ops-exec = { path = "../../shared/ops-exec", features = ["rpc"] }
14 tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread", "fs", "io-std"] }
15 anyhow = "1.0.102"
16 async-trait = "0.1.83"
17 serde = { version = "1.0.228", features = ["derive"] }
18 toml = "1.1"
19 tracing = "0.1.44"
20 tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
21
22 [dev-dependencies]
23 tempfile = "3.20"
24
25 [lints.rust]
26 unused = "warn"
27 unreachable_pub = "warn"
28
29 [lints.clippy]
30 pedantic = { level = "warn", priority = -1 }
31 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
32 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
33 # else in `pedantic` stays a warning. Keep this block identical across repos.
34 module_name_repetitions = "allow"
35 # Doc lints. No docs-completeness push is underway.
36 missing_errors_doc = "allow"
37 missing_panics_doc = "allow"
38 doc_markdown = "allow"
39 # Numeric casts. Endemic and mostly intentional in size and byte math.
40 cast_possible_truncation = "allow"
41 cast_sign_loss = "allow"
42 cast_precision_loss = "allow"
43 cast_possible_wrap = "allow"
44 cast_lossless = "allow"
45 # Subjective structure and style nags. High churn, low signal.
46 must_use_candidate = "allow"
47 too_many_lines = "allow"
48 struct_excessive_bools = "allow"
49 similar_names = "allow"
50 items_after_statements = "allow"
51 single_match_else = "allow"
52 # Frequent false-positives in TUI and router-heavy code.
53 match_same_arms = "allow"
54 unnecessary_wraps = "allow"
55 type_complexity = "allow"
56