mirror of
https://github.com/jedisct1/encrypted-dns-server
synced 2024-11-12 13:10:44 +00:00
24 lines
596 B
TOML
24 lines
596 B
TOML
[package]
|
|
name = "rust-dnscrypt-server"
|
|
version = "0.1.0"
|
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bincode = "1.1.4"
|
|
byteorder = "1.3.2"
|
|
clap = { version="2.33.0", features=["suggestions", "wrap_help", "nightly"] }
|
|
derivative = "1.0.3"
|
|
env_logger = "0.6.2"
|
|
failure = "0.1.5"
|
|
futures-preview = { version = "=0.3.0-alpha.18", features = ["compat", "async-await", "nightly", "io-compat", "cfg-target-has-atomic"] }
|
|
jemallocator = "0.3.2"
|
|
libsodium-sys="0.2.3"
|
|
log = "0.4.8"
|
|
tokio = "=0.2.0-alpha.4"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
opt-level = 3
|