Skip to main content

max / makeover-layout

1.8 KB · 47 lines History Blame Raw
1 [package]
2 name = "makeover-layout"
3 version = "0.41.2"
4 edition = "2024"
5 # One copy of this vocabulary per dependency graph, enforced by cargo rather
6 # than by remembering. Two versions of a description layer in one build means
7 # the stylesheet and the markup can be generated off different vocabularies,
8 # which is exactly what goingson was doing until 2026-08-11. See build.rs.
9 links = "makeover-layout"
10 description = "The renderer-agnostic half of the make-family design system: what a thing IS, named as intents and relationships and never as values. Colour defers to makeover, spacing to makeover-geometry; what is left is composition."
11 license = "MIT"
12 repository = "https://makenot.work/git/max/makeover-layout"
13
14 [dependencies]
15
16 [lints.rust]
17 unused = "warn"
18 unreachable_pub = "warn"
19
20 [lints.clippy]
21 pedantic = { level = "warn", priority = -1 }
22 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
23 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
24 # else in `pedantic` stays a warning. Keep this block identical across repos.
25 module_name_repetitions = "allow"
26 # Doc lints. No docs-completeness push is underway.
27 missing_errors_doc = "allow"
28 missing_panics_doc = "allow"
29 doc_markdown = "allow"
30 # Numeric casts. Endemic and mostly intentional in size and byte math.
31 cast_possible_truncation = "allow"
32 cast_sign_loss = "allow"
33 cast_precision_loss = "allow"
34 cast_possible_wrap = "allow"
35 cast_lossless = "allow"
36 # Subjective structure and style nags. High churn, low signal.
37 must_use_candidate = "allow"
38 too_many_lines = "allow"
39 struct_excessive_bools = "allow"
40 similar_names = "allow"
41 items_after_statements = "allow"
42 single_match_else = "allow"
43 # Frequent false-positives in TUI and router-heavy code.
44 match_same_arms = "allow"
45 unnecessary_wraps = "allow"
46 type_complexity = "allow"
47