You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
encrypted-dns-server/Cargo.toml

102 lines
2.4 KiB
TOML

5 years ago
[package]
5 years ago
name = "encrypted-dns"
1 month ago
version = "0.9.15"
5 years ago
authors = ["Frank Denis <github@pureftpd.org>"]
edition = "2018"
description = "A modern encrypted DNS server (DNSCrypt v2, Anonymized DNSCrypt, DoH)"
5 years ago
keywords = ["dnscrypt", "encryption", "dns", "doh", "proxy"]
license = "MIT"
5 years ago
homepage = "https://github.com/jedisct1/encrypted-dns-server"
repository = "https://github.com/jedisct1/encrypted-dns-server"
categories = ["asynchronous", "network-programming", "command-line-utilities"]
5 years ago
readme = "README.md"
5 years ago
[dependencies]
6 days ago
anyhow = "1.0.82"
6 months ago
byteorder = "1.5.0"
10 months ago
clap = { version = "3.2.25", default-features = false, features = [
"std",
"cargo",
"wrap_help",
] }
coarsetime = "0.1.34"
daemonize-simple = "0.1.5"
derivative = "2.2.0"
dnsstamps = "0.1.9"
1 month ago
env_logger = { version = "0.11.3", default-features = false, features = [
"humantime",
] }
4 months ago
futures = { version = "0.3.30", features = ["async-await"] }
hyper = { version = "0.14.28", default-features = false, features = [
"server",
"http1",
], optional = true }
ipext = "0.1.0"
libsodium-sys-stable = "1.20.5"
log = { version = "0.4.21", features = ["std", "release_max_level_debug"] }
6 days ago
mimalloc = { version = "0.1.41", default-features = false }
socket2 = "0.5.6"
parking_lot = "0.12.1"
2 years ago
rand = "0.8.5"
8 months ago
rlimit = "0.10.1"
3 years ago
rustc-hash = "1.1.0"
6 days ago
serde = "1.0.198"
serde_derive = "1.0.198"
1 year ago
serde-big-array = "0.5.1"
sieve-cache = "0.1.4"
1 month ago
siphasher = "1.0.1"
slabigator = "0.9.2"
6 days ago
tokio = { version = "1.37.0", features = [
"net",
"io-std",
"io-util",
"fs",
"time",
"rt-multi-thread"
] }
1 month ago
toml = "0.8.12"
5 years ago
[target.'cfg(target_family = "unix")'.dependencies]
10 months ago
privdrop = "0.5.4"
5 years ago
[dependencies.prometheus]
optional = true
package = "prometheus-32bitfix"
2 years ago
version = "0.13.1"
1 year ago
default-features = false
features = ["process"]
5 years ago
[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"
5 years ago
[profile.release]
codegen-units = 1
incremental = false
panic = "abort"