Skip to main content

max / makeover-build

1.5 KB · 45 lines History Blame Raw
1 [package]
2 name = "makeover-build"
3 version = "0.8.0"
4 edition = "2024"
5 description = "Build-script support for the make-family design system: materialise makeover's themes and makeover-webview's stylesheet into a Tauri app's frontend, once, instead of copying the same twenty lines into every consumer's build.rs."
6 license = "MIT"
7 repository = "https://makenot.work/git/max/makeover-build"
8
9 [dependencies]
10 makeover = "2.4.1"
11 makeover-webview = "0.16"
12 makeover-geometry = "0.6"
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