[package]
edition = "2024"
name = "ix-config"
version = "0.1.0"
authors = ["Kevin Chen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hierarchical configuration loading for Ixchel"
readme = "README.md"
keywords = [
"config",
"toml",
"settings",
]
categories = ["config"]
license = "MIT"
repository = "https://github.com/kevinmichaelchen/ixchel"
resolver = "2"
[lib]
name = "ix_config"
path = "src/lib.rs"
[dependencies.dirs]
version = "5"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[lints.clippy]
cognitive_complexity = "warn"
implicit_hasher = "allow"
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
too_many_arguments = "allow"
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1