[package]
edition = "2024"
name = "knf-core"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Load, merge and emit layered JSON and TOML configuration files"
readme = false
license = "MIT"
repository = "https://github.com/binado/knf"
[lib]
name = "knf"
path = "src/lib.rs"
[[test]]
name = "cases"
path = "tests/cases.rs"
[[test]]
name = "interp_props"
path = "tests/interp_props.rs"
[[test]]
name = "library"
path = "tests/library.rs"
[[test]]
name = "props"
path = "tests/props.rs"
[dependencies.anyhow]
version = "1"
[dependencies.indexmap]
version = "2"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1"
features = ["preserve_order"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"