This commit is contained in:
Frank Denis 2021-09-06 19:28:30 +02:00
parent 63eac2a622
commit b77f10cd9d
2 changed files with 8 additions and 8 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "doh-proxy" name = "doh-proxy"
version = "0.9.0" version = "0.9.1"
authors = ["Frank Denis <github@pureftpd.org>"] authors = ["Frank Denis <github@pureftpd.org>"]
description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy" description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy"
keywords = ["dns","https","doh","odoh","proxy"] keywords = ["dns","https","doh","odoh","proxy"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "libdoh" name = "libdoh"
version = "0.9.0" version = "0.9.1"
authors = ["Frank Denis <github@pureftpd.org>"] authors = ["Frank Denis <github@pureftpd.org>"]
description = "DoH and Oblivious DoH library for the rust-doh app" description = "DoH and Oblivious DoH library for the rust-doh app"
keywords = ["dns","https","doh","odoh","proxy"] keywords = ["dns","https","doh","odoh","proxy"]
@ -15,17 +15,17 @@ default = ["tls"]
tls = ["tokio-rustls"] tls = ["tokio-rustls"]
[dependencies] [dependencies]
anyhow = "1.0.42" anyhow = "1.0.43"
arc-swap = "1.3.0" arc-swap = "1.3.2"
base64 = "0.13.0" base64 = "0.13.0"
byteorder = "1.4.3" byteorder = "1.4.3"
bytes = "1.0.1" bytes = "1.1.0"
futures = "0.3.16" futures = "0.3.17"
hpke = "0.5.1" hpke = "0.5.1"
hyper = { version = "0.14.11", default-features = false, features = ["server", "http1", "http2", "stream"] } hyper = { version = "0.14.12", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.0-alpha.1" odoh-rs = "1.0.0-alpha.1"
rand = "0.8.4" rand = "0.8.4"
tokio = { version = "1.10.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] } tokio = { version = "1.11.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] }
tokio-rustls = { version = "0.22.0", features = ["early-data"], optional = true } tokio-rustls = { version = "0.22.0", features = ["early-data"], optional = true }
[profile.release] [profile.release]