2019-09-02 21:02:23 +00:00
|
|
|
[package]
|
2019-09-19 10:09:00 +00:00
|
|
|
name = "encrypted-dns"
|
2019-09-21 12:24:07 +00:00
|
|
|
version = "0.1.3"
|
2019-09-02 21:02:23 +00:00
|
|
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
|
|
|
edition = "2018"
|
2019-09-20 10:10:59 +00:00
|
|
|
description = "A modern encrypted DNS server (DNSCrypt, Anonymized DNSCrypt, DoH)"
|
2019-09-20 10:18:44 +00:00
|
|
|
keywords = ["dnscrypt", "encryption", "dns", "doh", "proxy"]
|
2019-09-20 10:10:59 +00:00
|
|
|
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"]
|
2019-09-20 10:22:41 +00:00
|
|
|
readme = "README.md"
|
2019-09-02 21:02:23 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
byteorder = "1.3.2"
|
2019-09-19 23:44:03 +00:00
|
|
|
clap = { version="2.33.0", features=["wrap_help", "nightly"] }
|
|
|
|
clockpro-cache = "0.1.8"
|
2019-09-18 11:40:05 +00:00
|
|
|
coarsetime = "0.1.11"
|
2019-09-21 14:29:13 +00:00
|
|
|
daemonize-simple = "0.1.2"
|
2019-09-02 21:02:23 +00:00
|
|
|
derivative = "1.0.3"
|
2019-09-02 23:33:46 +00:00
|
|
|
dnsstamps = "0.1.1"
|
2019-09-02 21:02:23 +00:00
|
|
|
env_logger = "0.6.2"
|
|
|
|
failure = "0.1.5"
|
2019-09-19 23:44:03 +00:00
|
|
|
futures-preview = { version = "=0.3.0-alpha.18", features = ["async-await", "nightly", "cfg-target-has-atomic"] }
|
2019-09-02 21:02:23 +00:00
|
|
|
jemallocator = "0.3.2"
|
2019-09-19 23:44:03 +00:00
|
|
|
libsodium-sys-stable="0.0.18"
|
2019-09-02 21:02:23 +00:00
|
|
|
log = "0.4.8"
|
2019-09-17 18:02:09 +00:00
|
|
|
net2 = "0.2.33"
|
2019-09-09 12:01:10 +00:00
|
|
|
parking_lot = "0.9.0"
|
2019-09-19 10:57:24 +00:00
|
|
|
privdrop = "0.3.3"
|
2019-09-17 18:02:09 +00:00
|
|
|
rand = "0.7.2"
|
2019-09-18 10:34:19 +00:00
|
|
|
serde = "1.0.101"
|
|
|
|
serde_derive = "1.0.101"
|
|
|
|
serde-big-array = "0.1.5"
|
2019-09-20 22:53:20 +00:00
|
|
|
siphasher = "0.3.1"
|
2019-09-02 21:02:23 +00:00
|
|
|
tokio = "=0.2.0-alpha.4"
|
2019-09-17 18:02:09 +00:00
|
|
|
tokio-net = "=0.2.0-alpha.4"
|
2019-09-19 10:09:00 +00:00
|
|
|
toml = "0.5.3"
|
2019-09-02 21:02:23 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|
|
|
|
opt-level = 3
|