[package]
name = "makeover"
version = "2.5.1"
edition = "2024"
description = "Shared theme loading for the make-family apps: TOML theme files parsed into intent-based color tokens, with perceptual derivations and WCAG contrast."
license = "MIT"
repository = "https://makenot.work/git/max/makeover"
[dependencies]
serde = { version = "1", features = ["derive"] }
toml = "1.1"
include_dir = "0.7"
[dev-dependencies]
tempfile = "3"
[lints.rust]
unused = "warn"
unreachable_pub = "warn"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
doc_markdown = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_precision_loss = "allow"
cast_possible_wrap = "allow"
cast_lossless = "allow"
must_use_candidate = "allow"
too_many_lines = "allow"
struct_excessive_bools = "allow"
similar_names = "allow"
items_after_statements = "allow"
single_match_else = "allow"
match_same_arms = "allow"
unnecessary_wraps = "allow"
type_complexity = "allow"