mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Enable support for early data
This commit is contained in:
parent
2179ceae67
commit
c6c5c71458
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "doh-proxy"
|
||||
version = "0.3.5"
|
||||
version = "0.3.6"
|
||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||
description = "A DNS-over-HTTPS (DoH) proxy"
|
||||
keywords = ["dns","https","doh","proxy"]
|
||||
|
@ -16,7 +16,7 @@ default = ["tls"]
|
|||
tls = ["libdoh/tls"]
|
||||
|
||||
[dependencies]
|
||||
libdoh = { path = "src/libdoh", version = "0.3.5", default-features = false }
|
||||
libdoh = { path = "src/libdoh", version = "0.3.6", default-features = false }
|
||||
clap = "2.33.3"
|
||||
jemallocator = "0.3.2"
|
||||
tokio = { version = "1.2.0", features = ["net", "rt-multi-thread", "parking_lot", "time"] }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "libdoh"
|
||||
version = "0.3.5"
|
||||
version = "0.3.6"
|
||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||
description = "DoH library for the rust-doh app"
|
||||
keywords = ["dns","https","doh","proxy"]
|
||||
|
@ -21,7 +21,7 @@ base64 = "0.13.0"
|
|||
futures = "0.3.12"
|
||||
hyper = { version = "0.14.4", default-features = false, features = ["server", "http1", "http2", "stream"] }
|
||||
tokio = { version = "1.2.0", features = ["net", "rt-multi-thread", "parking_lot", "time"] }
|
||||
tokio-rustls = { version = "0.22.0", optional = true }
|
||||
tokio-rustls = { version = "0.22.0", features = ["early-data"], optional = true }
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue