| 1 |
[package] |
| 2 |
name = "makeover-immediate" |
| 3 |
version = "0.45.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 |
exclude = ["scripts/", "dist/", "bento.toml", ".githooks/"] |
| 9 |
|
| 10 |
[dependencies] |
| 11 |
egui = { version = "0.35", default-features = false } |
| 12 |
egui_extras = { version = "0.35", default-features = false } |
| 13 |
# Exact patch rather than the minor, as the rest of the suite pins: a |
| 14 |
# minor-only requirement is satisfied by a consumer lock holding an earlier |
| 15 |
# patch, which then fails to compile against an API added in a later one. |
| 16 |
makeover-layout = "0.44" |
| 17 |
# The cadence the activity mark blinks at, and the motion-off seam beside it. |
| 18 |
# Taken rather than chosen here: three renderers draw this mark and a number |
| 19 |
# picked per renderer is three heartbeats for one wait. |
| 20 |
makeover-timing = "0.1.1" |
| 21 |
|
| 22 |
[lints.rust] |
| 23 |
unused = "warn" |
| 24 |
unreachable_pub = "warn" |
| 25 |
|
| 26 |
[lints.clippy] |
| 27 |
pedantic = { level = "warn", priority = -1 } |
| 28 |
# Allow-list tuned from a measured breakdown across server/multithreaded/pter |
| 29 |
# (2026-07-22). These are the high-churn / low-signal pedantic lints; everything |
| 30 |
# else in `pedantic` stays a warning. Keep this block identical across repos. |
| 31 |
module_name_repetitions = "allow" |
| 32 |
# Doc lints. No docs-completeness push is underway. |
| 33 |
missing_errors_doc = "allow" |
| 34 |
missing_panics_doc = "allow" |
| 35 |
doc_markdown = "allow" |
| 36 |
# Numeric casts. Endemic and mostly intentional in size and byte math. |
| 37 |
cast_possible_truncation = "allow" |
| 38 |
cast_sign_loss = "allow" |
| 39 |
cast_precision_loss = "allow" |
| 40 |
cast_possible_wrap = "allow" |
| 41 |
cast_lossless = "allow" |
| 42 |
# Subjective structure and style nags. High churn, low signal. |
| 43 |
must_use_candidate = "allow" |
| 44 |
too_many_lines = "allow" |
| 45 |
struct_excessive_bools = "allow" |
| 46 |
similar_names = "allow" |
| 47 |
items_after_statements = "allow" |
| 48 |
single_match_else = "allow" |
| 49 |
# Frequent false-positives in TUI and router-heavy code. |
| 50 |
match_same_arms = "allow" |
| 51 |
unnecessary_wraps = "allow" |
| 52 |
type_complexity = "allow" |
| 53 |
|