mirror of
https://github.com/jedisct1/encrypted-dns-server
synced 2024-11-10 19:10:25 +00:00
69 lines
2.1 KiB
TOML
69 lines
2.1 KiB
TOML
[package]
|
|
name = "encrypted-dns"
|
|
version = "0.3.19"
|
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
|
edition = "2018"
|
|
description = "A modern encrypted DNS server (DNSCrypt v2, Anonymized DNSCrypt, DoH)"
|
|
keywords = ["dnscrypt", "encryption", "dns", "doh", "proxy"]
|
|
license = "MIT"
|
|
homepage = "https://github.com/jedisct1/encrypted-dns-server"
|
|
repository = "https://github.com/jedisct1/encrypted-dns-server"
|
|
categories = ["asynchronous", "network-programming","command-line-utilities"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.32"
|
|
byteorder = "1.3.4"
|
|
clap = { version = "2.33.3", default-features = false, features = ["wrap_help"] }
|
|
clockpro-cache = "0.1.8"
|
|
coarsetime = "0.1.16"
|
|
daemonize-simple = "0.1.4"
|
|
derivative = "2.1.1"
|
|
dnsstamps = "0.1.4"
|
|
env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] }
|
|
futures = { version = "0.3.5", features = ["async-await"] }
|
|
hyper = { version = "0.13.8", default_features = false, optional = true }
|
|
ipext = "0.1.0"
|
|
jemallocator = "0.3.2"
|
|
libsodium-sys-stable= "1.19.10"
|
|
log = { version = "0.4.11", features = ["std", "release_max_level_debug"] }
|
|
socket2 = "0.3"
|
|
parking_lot = "0.11"
|
|
privdrop = "0.3.4"
|
|
rand = "0.7"
|
|
rustc-hash = "1"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde-big-array = "0.3.0"
|
|
siphasher = "0.3"
|
|
tokio = { version = "0.2.22", features = ["fs", "rt-threaded", "time", "tcp", "udp", "stream", "parking_lot"] }
|
|
toml = "0.5"
|
|
|
|
[dependencies.prometheus]
|
|
optional = true
|
|
version = "0.10.0"
|
|
default_features = false
|
|
features = ["process"]
|
|
|
|
[features]
|
|
default = ["metrics"]
|
|
metrics = ["hyper", "prometheus"]
|
|
|
|
[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"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = false
|
|
panic = "abort"
|