forked from DNSCrypt/encrypted-dns-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (63 loc) · 2.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "encrypted-dns"
version = "0.3.23"
authors = ["Frank Denis <[email protected]>"]
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.38"
byteorder = "1.4.2"
clap = { version = "2.33.3", default-features = false, features = ["wrap_help"] }
clockpro-cache = "0.1.10"
coarsetime = "0.1.18"
daemonize-simple = "0.1.4"
derivative = "2.2.0"
dnsstamps = "0.1.6"
env_logger = { version = "0.8.3", default-features = false, features = ["humantime"] }
futures = { version = "0.3.13", features = ["async-await"] }
hyper = { version = "0.14.4", default_features = false, features = ["server", "http1"], optional = true }
ipext = "0.1.0"
jemallocator = "0.3.2"
libsodium-sys-stable= "1.19.14"
log = { version = "0.4.14", features = ["std", "release_max_level_debug"] }
socket2 = "0.3.19"
parking_lot = "0.11.1"
privdrop = "0.5.0"
rand = "0.8.3"
rustc-hash = "1.1.0"
serde = "1.0.124"
serde_derive = "1.0.124"
serde-big-array = "0.3.1"
siphasher = "0.3.3"
tokio = { version = "1.2.0", features = ["net", "io-std", "io-util", "fs", "time", "rt-multi-thread", "parking_lot"] }
toml = "0.5.8"
[dependencies.prometheus]
optional = true
version = "0.12.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"