[package]
edition = "2024"
rust-version = "1.88"
name = "dnspls-core"
version = "0.1.0"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-neutral evidence and decision kernel for DNSpls"
documentation = "https://docs.rs/dnspls-core"
readme = "README.md"
keywords = [
"domain",
"dns",
"evidence",
"validation",
]
license = "Apache-2.0"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "dnspls_core"
path = "src/lib.rs"
[[test]]
name = "truth_invariants"
path = "tests/truth_invariants.rs"
[dependencies.dnspls-domain]
version = "0.1.0"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dev-dependencies.proptest]
version = "1.7.0"
[dev-dependencies.serde_json]
version = "1.0.145"
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"