Skip to main content

max / everycycle

1.5 KB · 54 lines History Blame Raw
1 [workspace]
2 resolver = "3"
3 members = [
4 "crates/runtime",
5 "crates/scheduler",
6 "crates/orchestrator",
7 "crates/api",
8 "crates/tui",
9 "crates/hal",
10 "crates/bmc-agent",
11 "crates/appraise",
12 ]
13
14 [workspace.package]
15 version = "0.0.1"
16 edition = "2024"
17 rust-version = "1.85"
18 license = "MIT"
19 authors = ["Make Creative, LLC"]
20 repository = "https://makenot.work/git/max/everycycle"
21 homepage = "https://makenot.work/git/max/everycycle"
22
23 [workspace.lints.rust]
24 unused = "warn"
25 unreachable_pub = "warn"
26
27 [workspace.lints.clippy]
28 pedantic = { level = "warn", priority = -1 }
29 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
30 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
31 # else in `pedantic` stays a warning. Keep this block identical across repos.
32 module_name_repetitions = "allow"
33 # Doc lints. No docs-completeness push is underway.
34 missing_errors_doc = "allow"
35 missing_panics_doc = "allow"
36 doc_markdown = "allow"
37 # Numeric casts. Endemic and mostly intentional in size and byte math.
38 cast_possible_truncation = "allow"
39 cast_sign_loss = "allow"
40 cast_precision_loss = "allow"
41 cast_possible_wrap = "allow"
42 cast_lossless = "allow"
43 # Subjective structure and style nags. High churn, low signal.
44 must_use_candidate = "allow"
45 too_many_lines = "allow"
46 struct_excessive_bools = "allow"
47 similar_names = "allow"
48 items_after_statements = "allow"
49 single_match_else = "allow"
50 # Frequent false-positives in TUI and router-heavy code.
51 match_same_arms = "allow"
52 unnecessary_wraps = "allow"
53 type_complexity = "allow"
54