[package] name = "quasi-type" version = "0.1.3" edition = "2024" description = "The house font pipeline: a pinned base face plus the house glyph set in, a Quasi face out." license = "MIT" repository = "https://makenot.work/git/max/quasi-type" publish = false [lib] name = "quasi_type" path = "src/lib.rs" [[bin]] name = "quasi-type" path = "src/main.rs" [dependencies] read-fonts = "0.43" write-fonts = "0.52" # Reading a variable base at a location: applying `gvar` and `avar` is skrifa's # job, not read-fonts'. Pinned to the release that takes read-fonts 0.43, so the # tree resolves one copy of it rather than two. skrifa = "0.46" font-types = "0.12" kurbo = "0.13" brotli = "8" sha2 = "0.10" zip = { version = "6", default-features = false, features = ["deflate"] } serde = { version = "1", features = ["derive"] } toml = "1.1" [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"