[package]
edition = "2021"
name = "dnsink"
version = "0.3.0"
authors = ["Joel Libni <kakarot.joel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance DNS proxy with threat intelligence, Shannon-entropy tunneling detection, and Prometheus metrics"
homepage = "https://github.com/kakarot-dev/dnsink"
documentation = "https://docs.rs/dnsink"
readme = "README.md"
keywords = [
"dns",
"proxy",
"security",
"malware",
"threat-intelligence",
]
categories = [
"network-programming",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/kakarot-dev/dnsink"
[lib]
name = "dnsink"
path = "src/lib.rs"
[[bin]]
name = "dnsink"
path = "src/main.rs"
[[test]]
name = "entropy_tests"
path = "tests/entropy_tests.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "metrics_tests"
path = "tests/metrics_tests.rs"
[[bench]]
name = "dnsink"
path = "benches/dnsink.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.arc-swap]
version = "1.8.2"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.hickory-proto]
version = "0.25"
[dependencies.hickory-resolver]
version = "0.25"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1"
features = [
"server",
"http1",
]
[dependencies.hyper-util]
version = "0.1"
features = ["tokio"]
[dependencies.ratatui]
version = "0.29"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]