[package]
edition = "2024"
name = "hashmap_settings"
version = "0.6.1"
authors = ["OxidizedLoop"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HashMap wrapper for layered Settings"
documentation = "https://docs.rs/hashmap_settings"
readme = "README.md"
keywords = [
"hashmap",
"settings",
"account",
]
categories = [
"config",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/OxidizedLoop/HashMapSettings"
[features]
default = []
serde = [
"dep:serde",
"dep:typetag",
]
[lib]
name = "hashmap_settings"
path = "src/lib.rs"
[dependencies.dyn-clone]
version = "1.0"
[dependencies.dyn_ord]
version = "0.2.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.typetag]
version = "0.2"
optional = true
[lints.clippy]
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
[lints.clippy.doc_markdown]
level = "allow"
priority = 1
[lints.rust]
missing_docs = "warn"