Skip to main content

max / makeover-touch

1.9 KB · 49 lines History Blame Raw
1 [package]
2 name = "makeover-touch"
3 version = "0.18.0"
4 edition = "2024"
5 description = "The adaptation layer of the make-family design system: which affordances exist at a given input class and window size class. Names what appears and disappears, never how much space it takes."
6 license = "MIT"
7 repository = "https://makenot.work/git/max/makeover-touch"
8
9 [dependencies]
10 makeover-geometry = "0.7"
11 # Exact patch, and it must track the suite. This crate re-exports
12 # `makeover_layout::Priority`, so a stale requirement here does not merely lag:
13 # it resolves a SECOND makeover-layout beside the one the consumer asked for,
14 # and the two Priorities are nominally distinct. makeover-webview takes both
15 # crates and was carrying 0.12 and 0.14 at once because of this line.
16 makeover-layout = "0.26.1"
17
18 [lints.rust]
19 unused = "warn"
20 unreachable_pub = "warn"
21
22 [lints.clippy]
23 pedantic = { level = "warn", priority = -1 }
24 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
25 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
26 # else in `pedantic` stays a warning. Keep this block identical across repos.
27 module_name_repetitions = "allow"
28 # Doc lints. No docs-completeness push is underway.
29 missing_errors_doc = "allow"
30 missing_panics_doc = "allow"
31 doc_markdown = "allow"
32 # Numeric casts. Endemic and mostly intentional in size and byte math.
33 cast_possible_truncation = "allow"
34 cast_sign_loss = "allow"
35 cast_precision_loss = "allow"
36 cast_possible_wrap = "allow"
37 cast_lossless = "allow"
38 # Subjective structure and style nags. High churn, low signal.
39 must_use_candidate = "allow"
40 too_many_lines = "allow"
41 struct_excessive_bools = "allow"
42 similar_names = "allow"
43 items_after_statements = "allow"
44 single_match_else = "allow"
45 # Frequent false-positives in TUI and router-heavy code.
46 match_same_arms = "allow"
47 unnecessary_wraps = "allow"
48 type_complexity = "allow"
49