Skip to main content

max / makenotwork

1.5 KB · 45 lines History Blame Raw
1 [package]
2 name = "ops-artifact"
3 version = "0.1.0"
4 edition = "2024"
5 license = "MIT"
6 description = "The artifact and evidence contract between the system that builds a release and the system that advances it. Names what bytes exist, what source they came from, and what has been proven about them."
7
8 [dependencies]
9 serde = { version = "1.0.228", features = ["derive"] }
10 serde_json = "1"
11 chrono = { version = "0.4", features = ["serde"] }
12 sha2 = "0.10"
13
14 [lints.rust]
15 unused = "warn"
16 unreachable_pub = "warn"
17
18 [lints.clippy]
19 pedantic = { level = "warn", priority = -1 }
20 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
21 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
22 # else in `pedantic` stays a warning. Keep this block identical across repos.
23 module_name_repetitions = "allow"
24 # Doc lints. No docs-completeness push is underway.
25 missing_errors_doc = "allow"
26 missing_panics_doc = "allow"
27 doc_markdown = "allow"
28 # Numeric casts. Endemic and mostly intentional in size and byte math.
29 cast_possible_truncation = "allow"
30 cast_sign_loss = "allow"
31 cast_precision_loss = "allow"
32 cast_possible_wrap = "allow"
33 cast_lossless = "allow"
34 # Subjective structure and style nags. High churn, low signal.
35 must_use_candidate = "allow"
36 too_many_lines = "allow"
37 struct_excessive_bools = "allow"
38 similar_names = "allow"
39 items_after_statements = "allow"
40 single_match_else = "allow"
41 # Frequent false-positives in TUI and router-heavy code.
42 match_same_arms = "allow"
43 unnecessary_wraps = "allow"
44 type_complexity = "allow"
45