mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Update deps, especially for tokio-rustls
This commit is contained in:
parent
8d72413eaf
commit
8e4d66f68a
2 changed files with 11 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "doh-proxy"
|
||||
version = "0.3.2"
|
||||
version = "0.3.3"
|
||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||
description = "A DNS-over-HTTPS (DoH) proxy"
|
||||
keywords = ["dns","https","doh","proxy"]
|
||||
|
@ -16,10 +16,10 @@ default = ["tls"]
|
|||
tls = ["libdoh/tls"]
|
||||
|
||||
[dependencies]
|
||||
libdoh = { path = "src/libdoh", version = "0.3" }
|
||||
clap = "2.33.0"
|
||||
libdoh = { path = "src/libdoh", version = "0.3.3" }
|
||||
clap = "2.33.1"
|
||||
jemallocator = "0.3.2"
|
||||
tokio = { version = "0.2.18", features = ["rt-threaded", "time", "tcp", "udp", "stream", "parking_lot"] }
|
||||
tokio = { version = "0.2.21", features = ["rt-threaded", "time", "tcp", "udp", "stream", "parking_lot"] }
|
||||
|
||||
[package.metadata.deb]
|
||||
extended-description = """\
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "libdoh"
|
||||
version = "0.3.2"
|
||||
version = "0.3.3"
|
||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||
description = "DoH library for the rust-doh app"
|
||||
keywords = ["dns","https","doh","proxy"]
|
||||
|
@ -15,13 +15,13 @@ default = []
|
|||
tls = ["tokio-rustls"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.28"
|
||||
anyhow = "1.0.31"
|
||||
byteorder = "1.3.4"
|
||||
base64 = "0.12.0"
|
||||
futures = "0.3.4"
|
||||
hyper = { version = "0.13.4", default-features = false, features = ["stream"] }
|
||||
tokio = { version = "0.2.18", features = ["rt-threaded", "time", "tcp", "udp", "stream", "parking_lot"] }
|
||||
tokio-rustls = { version = "0.13.0", optional = true }
|
||||
base64 = "0.12.1"
|
||||
futures = "0.3.5"
|
||||
hyper = { version = "0.13.5", default-features = false, features = ["stream"] }
|
||||
tokio = { version = "0.2.21", features = ["rt-threaded", "time", "tcp", "udp", "stream", "parking_lot"] }
|
||||
tokio-rustls = { version = "0.13.1", optional = true }
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue