[package] name = "makeover-tui" version = "0.44.2" edition = "2024" description = "The terminal renderer for makeover-layout, on ratatui. Colour stops being the constraint above 256 entries; geometry never does, because an edge occupies a whole cell on every side." license = "MIT" repository = "https://makenot.work/git/max/makeover-tui" exclude = ["scripts/", "dist/", "bento.toml", ".githooks/"] [features] # Resolving a loaded makeover theme into ratatui colours. Off by default: it is # the only thing here that needs `makeover`, which embeds the shipped theme # files, and a consumer that only paints bevels should not carry them. theme = ["dep:makeover"] [dependencies] ratatui = { version = "0.30", default-features = false } # Exact patch, not the minor. A minor-only pin lets a consumer whose lock # already holds an earlier patch satisfy the requirement and still fail to # compile against an API added in a later one -- which is what `Depth::Overlay` # would do here. The rest of the suite has pinned this way since # makeover-webview found it the hard way. makeover-layout = "0.44.2" # The cadence the activity mark blinks at, and the motion-off seam beside it. # Taken rather than chosen here: `activity_lit` is this crate's only use of it, # and the whole point is that the number is not this crate's to pick. makeover-timing = "0.1.1" makeover = { version = "3.0", optional = true } [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"