[package]
edition = "2018"
name = "encrypted-dns"
version = "0.9.20"
authors = ["Frank Denis <github@pureftpd.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern encrypted DNS server (DNSCrypt v2, Anonymized DNSCrypt, DoH)"
homepage = "https://github.com/jedisct1/encrypted-dns-server"
readme = "README.md"
keywords = [
"dnscrypt",
"encryption",
"dns",
"doh",
"proxy",
]
categories = [
"asynchronous",
"network-programming",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/jedisct1/encrypted-dns-server"
[package.metadata.deb]
extended-description = "An easy to install, high-performance, zero maintenance proxy to run an encrypted DNS server."
assets = [
[
"target/release/encrypted-dns",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/encrypted-dns/README.md",
"644",
],
[
"example-encrypted-dns.toml",
"usr/share/doc/encrypted-dns/example-encrypted-dns.toml",
"644",
],
]
section = "network"
depends = "$auto"
priority = "optional"
[features]
default = ["metrics"]
metrics = [
"hyper",
"prometheus",
]
[[bin]]
name = "encrypted-dns"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.clap]
version = "4.6.1"
features = [
"std",
"cargo",
"wrap_help",
]
default-features = false
[dependencies.coarsetime]
version = "0.1.37"
[dependencies.daemonize-simple]
version = "0.1.6"
[dependencies.dnsstamps]
version = "0.1.10"
[dependencies.educe]
version = "0.6.0"
features = ["full"]
[dependencies.env_logger]
version = "0.11.10"
features = ["humantime"]
default-features = false
[dependencies.futures]
version = "0.3.32"
features = ["async-await"]
[dependencies.http-body-util]
version = "0.1.3"
[dependencies.hyper]
version = "1.9.0"
features = [
"server",
"http1",
]
optional = true
default-features = false
[dependencies.hyper-util]
version = "0.1.20"
features = ["tokio"]
[dependencies.ipext]
version = "0.1.0"
[dependencies.libsodium-sys-stable]
version = "1.24.0"
[dependencies.log]
version = "0.4.29"
features = [
"std",
"release_max_level_debug",
]
[dependencies.mimalloc]
version = "0.1.50"
default-features = false
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.prometheus]
version = "0.13.4"
features = ["process"]
optional = true
default-features = false
package = "prometheus"
[dependencies.rand]
version = "0.10.1"
[dependencies.rlimit]
version = "0.11.0"
[dependencies.rustc-hash]
version = "2.1.2"
[dependencies.serde]
version = "1.0.228"
[dependencies.serde-big-array]
version = "0.5.1"
[dependencies.serde_derive]
version = "1.0.228"
[dependencies.sieve-cache]
version = "1.1.6"
[dependencies.siphasher]
version = "1.0.2"
[dependencies.slabigator]
version = "0.9.5"
[dependencies.socket2]
version = "0.6.3"
[dependencies.tokio]
version = "1.52.1"
features = [
"net",
"io-std",
"io-util",
"fs",
"time",
"rt-multi-thread",
]
[dependencies.toml]
version = "1.1.2"
[target.'cfg(target_family = "unix")'.dependencies.privdrop]
version = "0.5.6"
[profile.release]
codegen-units = 1
panic = "abort"
incremental = false