mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-05 14:07:37 +03:00
Require less features from hyper
This commit is contained in:
parent
ad36120e02
commit
f7770951da
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "doh-proxy"
|
name = "doh-proxy"
|
||||||
version = "0.1.21"
|
version = "0.2.0"
|
||||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||||
description = "A DNS-over-HTTPS (DoH) proxy"
|
description = "A DNS-over-HTTPS (DoH) proxy"
|
||||||
keywords = ["dns","https","doh","proxy"]
|
keywords = ["dns","https","doh","proxy"]
|
||||||
|
@ -19,11 +19,11 @@ tls = ["native-tls", "tokio-tls"]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
base64 = "0.11"
|
base64 = "0.11"
|
||||||
clap = "2.33.0"
|
clap = "2.33.0"
|
||||||
futures = "0.3"
|
futures = { version = "0.3" }
|
||||||
hyper = "0.13"
|
hyper = { version = "0.13", default-features = false, features = ["stream"] }
|
||||||
jemallocator = "0"
|
jemallocator = "0"
|
||||||
native-tls = { version = "0.2.3", optional = true }
|
native-tls = { version = "0.2.3", optional = true }
|
||||||
tokio = { version = "0.2", features = ["full"] }
|
tokio = { version = "0.2", features = ["rt-threaded", "time", "tcp", "udp", "stream"] }
|
||||||
tokio-tls = { version = "0.3", optional = true }
|
tokio-tls = { version = "0.3", optional = true }
|
||||||
|
|
||||||
[package.metadata.deb]
|
[package.metadata.deb]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue