Skip to main content

max / makeover-timing

1.7 KB · 47 lines History Blame Raw
1 [package]
2 name = "makeover-timing"
3 version = "0.1.0"
4 edition = "2024"
5 description = "The time axis of the make-family design system: a duration is named by what it is waiting for, never by a number. Four intents, one duration each, the same on every renderer."
6 license = "MIT"
7 repository = "https://makenot.work/git/max/makeover-timing"
8
9 [dependencies]
10 # For the cascade layer name and nothing else. makeover-geometry is the crate
11 # every CSS-emitting member of the family already depends on, and it is where
12 # the family keeps the one spelling of `@layer makeover` on purpose: a second
13 # copy of that string is the drift the constant exists to prevent.
14 makeover-geometry = "0.7"
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