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

42 lines
1.1 KiB
TOML

5 years ago
[package]
5 years ago
name = "encrypted-dns"
5 years ago
version = "0.1.0"
authors = ["Frank Denis <github@pureftpd.org>"]
edition = "2018"
5 years ago
description = "A modern encrypted DNS server (DNSCrypt, Anonymized DNSCrypt, DoH)"
5 years ago
keywords = ["dnscrypt", "encryption", "dns", "doh", "proxy"]
5 years ago
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"]
5 years ago
[dependencies]
byteorder = "1.3.2"
5 years ago
clap = { version="2.33.0", features=["wrap_help", "nightly"] }
clockpro-cache = "0.1.8"
coarsetime = "0.1.11"
5 years ago
derivative = "1.0.3"
dnsstamps = "0.1.1"
5 years ago
env_logger = "0.6.2"
failure = "0.1.5"
5 years ago
futures-preview = { version = "=0.3.0-alpha.18", features = ["async-await", "nightly", "cfg-target-has-atomic"] }
5 years ago
jemallocator = "0.3.2"
5 years ago
libsodium-sys-stable="0.0.18"
5 years ago
log = "0.4.8"
net2 = "0.2.33"
parking_lot = "0.9.0"
5 years ago
privdrop = "0.3.3"
rand = "0.7.2"
serde = "1.0.101"
serde_derive = "1.0.101"
serde-big-array = "0.1.5"
5 years ago
siphasher = "0.3.0"
5 years ago
tokio = "=0.2.0-alpha.4"
tokio-net = "=0.2.0-alpha.4"
5 years ago
toml = "0.5.3"
5 years ago
[profile.release]
lto = true
panic = "abort"
opt-level = 3