[package]
edition = "2024"
name = "makeover"
version = "2.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared theme loading for the make-family apps: TOML theme files parsed into intent-based color tokens, with perceptual derivations and WCAG contrast."
readme = "README.md"
license = "MIT"
repository = "https://makenot.work/git/max/makeover"
[lib]
name = "makeover"
path = "src/lib.rs"
[[example]]
name = "dump_intents"
path = "examples/dump_intents.rs"
[[example]]
name = "well_fidelity"
path = "examples/well_fidelity.rs"
[dependencies.include_dir]
version = "0.7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "1.1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
items_after_statements = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
type_complexity = "allow"
unnecessary_wraps = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unused = "warn"