Skip to main content

max / makeover-immediate

1.8 KB · 48 lines History Blame Raw
1 [package]
2 name = "makeover-immediate"
3 version = "0.14.0"
4 edition = "2024"
5 description = "The immediate-mode renderer for makeover-layout. Immediate mode is the constraint that matters, not the library: no cascade, no retained tree, one stroke per widget. Backed by egui."
6 license = "MIT"
7 repository = "https://makenot.work/git/max/makeover-immediate"
8
9 [dependencies]
10 egui = { version = "0.35", default-features = false }
11 egui_extras = { version = "0.35", default-features = false }
12 # Exact patch rather than the minor, as the rest of the suite pins: a
13 # minor-only requirement is satisfied by a consumer lock holding an earlier
14 # patch, which then fails to compile against an API added in a later one.
15 makeover-layout = "0.16.0"
16
17 [lints.rust]
18 unused = "warn"
19 unreachable_pub = "warn"
20
21 [lints.clippy]
22 pedantic = { level = "warn", priority = -1 }
23 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
24 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
25 # else in `pedantic` stays a warning. Keep this block identical across repos.
26 module_name_repetitions = "allow"
27 # Doc lints. No docs-completeness push is underway.
28 missing_errors_doc = "allow"
29 missing_panics_doc = "allow"
30 doc_markdown = "allow"
31 # Numeric casts. Endemic and mostly intentional in size and byte math.
32 cast_possible_truncation = "allow"
33 cast_sign_loss = "allow"
34 cast_precision_loss = "allow"
35 cast_possible_wrap = "allow"
36 cast_lossless = "allow"
37 # Subjective structure and style nags. High churn, low signal.
38 must_use_candidate = "allow"
39 too_many_lines = "allow"
40 struct_excessive_bools = "allow"
41 similar_names = "allow"
42 items_after_statements = "allow"
43 single_match_else = "allow"
44 # Frequent false-positives in TUI and router-heavy code.
45 match_same_arms = "allow"
46 unnecessary_wraps = "allow"
47 type_complexity = "allow"
48