[package]
edition = "2024"
rust-version = "1.89"
name = "hns-dane-engine"
version = "0.1.0"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime-independent HNS browser engine facade"
documentation = "https://docs.rs/hns-dane-engine"
readme = "README.md"
keywords = [
"handshake",
"dane",
"dnssec",
"browser",
"cryptography",
]
categories = [
"cryptography",
"network-programming",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/handshake-rs/hns-dane-engine"
[lib]
name = "hns_dane_engine"
path = "src/lib.rs"
[dependencies.hns-browser-observability]
version = "0.1.0"
[dependencies.hns-browser-runtime]
version = "0.1.0"
[dependencies.hns-dane]
version = "0.1.0"
[dependencies.hns-dns-wire]
version = "0.1.0"
[dependencies.hns-gateway]
version = "0.1.0"
[dependencies.hns-p2p-transport]
version = "0.1.0"
[dependencies.hns-resolution-policy]
version = "0.1.0"
[dependencies.hns-resolver]
version = "0.1.0"
[dev-dependencies]
[lints.clippy]
alloc_instead_of_core = "warn"
allow_attributes_without_reason = "warn"
dbg_macro = "deny"
expect_used = "deny"
indexing_slicing = "deny"
panic = "deny"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"