[package]
edition = "2024"
rust-version = "1.89"
name = "hns-browser-runtime"
version = "0.1.0"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Session-bound HNS browser authority lifecycle"
documentation = "https://docs.rs/hns-browser-runtime"
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_browser_runtime"
path = "src/lib.rs"
[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"