kapiti 0.0.3

The Kapiti DNS Server
Documentation
[package]
name = "kapiti"
version = "0.0.3"
authors = ["Nick Parker <nick@nickbp.com>"]
license-file = "LICENCE.md"
edition = "2021"
readme = "README-CRATES.md"
description = "The Kapiti DNS Server"
documentation = "https://kapiti.nickbp.com"
homepage = "https://kapiti.nickbp.com"
repository = "https://sr.ht/~nickbp/kapiti/"
exclude = ["README.md"]

[dependencies]
anyhow = "1.0"
async-channel = "1.5"
async-lock = "2.5"
async-net = "1.5"
# Fork of dead async-native-tls project with this patch: https://github.com/async-email/async-native-tls/pull/32
async-native-tls-alpn = "0.4.1-alpha.0"
async-trait = "0.1"
async-io = "1.3"
backtrace = "0.3"
bytecheck = "0.6"
byteorder = "1.3"
bytes = "1.0"
chrono = "0.4"
flate2 = "1.0"
futures-lite = "1.11"
git-testament = "0.2"
http = "0.2.1"
hyper = { version = "0.14", default-features = false, features = ["client", "http1", "http2", "stream", "tcp"] }
lazy_static = "1.4"
libc = "0.2"
nix = "0.26"
packed_struct = "0.10"
packed_struct_codegen = "0.10"
pin-project-lite = "0.2"
rand = "0.8"
# disable unused redis async client:
redis = { version = "0.22", default-features = false, features = ["script"] }
retainer = "0.3"
rkyv = { version = "0.7", features = ["validation"] }
scopeguard = "1.1"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10.2"
signal-hook = "0.3"
smol = "1.2"
tokio = { version = "1.0", default-features = false } # for hyper-smol compatibility shim
toml = "0.7"
tracing = "0.1"
tracing-attributes = "0.1"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
zstd = "0.12"

[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] } # for benchmarks
csv = "1.2" # for examples/update_specs
futures-delay-queue = "0.5" # for benchmarks
proptest = "1.0" # for property tests
tempfile = "3" # for benchmarks

[[bench]]
name = "server"
harness = false