[package] name = "makeover-touch" version = "0.34.0" edition = "2024" 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." license = "MIT" repository = "https://makenot.work/git/max/makeover-touch" exclude = ["scripts/", "dist/", "bento.toml", ".githooks/"] [dependencies] makeover-geometry = "0.7" # Exact patch, and it must track the suite. This crate re-exports # `makeover_layout::Priority`, so a stale requirement here does not merely lag: # it resolves a SECOND makeover-layout beside the one the consumer asked for, # and the two Priorities are nominally distinct. makeover-webview takes both # crates and was carrying 0.12 and 0.14 at once because of this line. makeover-layout = "0.44" [lints.rust] unused = "warn" unreachable_pub = "warn" [lints.clippy] pedantic = { level = "warn", priority = -1 } # Allow-list tuned from a measured breakdown across server/multithreaded/pter # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything # else in `pedantic` stays a warning. Keep this block identical across repos. module_name_repetitions = "allow" # Doc lints. No docs-completeness push is underway. missing_errors_doc = "allow" missing_panics_doc = "allow" doc_markdown = "allow" # Numeric casts. Endemic and mostly intentional in size and byte math. cast_possible_truncation = "allow" cast_sign_loss = "allow" cast_precision_loss = "allow" cast_possible_wrap = "allow" cast_lossless = "allow" # Subjective structure and style nags. High churn, low signal. must_use_candidate = "allow" too_many_lines = "allow" struct_excessive_bools = "allow" similar_names = "allow" items_after_statements = "allow" single_match_else = "allow" # Frequent false-positives in TUI and router-heavy code. match_same_arms = "allow" unnecessary_wraps = "allow" type_complexity = "allow"