Update deps

This commit is contained in:
Frank Denis 2023-07-15 21:18:46 +02:00
parent 9e2853da86
commit 78c47830ff
2 changed files with 8 additions and 8 deletions

View file

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

View file

@ -1,6 +1,6 @@
[package]
name = "libdoh"
version = "0.9.9"
version = "0.9.10"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "DoH and Oblivious DoH library for the rust-doh app"
keywords = ["dns","https","doh","odoh","proxy"]
@ -17,16 +17,16 @@ tls = ["tokio-rustls"]
[dependencies]
anyhow = "1.0.71"
arc-swap = "1.6.0"
base64 = "0.21.0"
base64 = "0.21.2"
byteorder = "1.4.3"
bytes = "1.4.0"
futures = "0.3.28"
hyper = { version = "0.14.26", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.1"
hyper = { version = "0.14.27", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.2"
rand = "0.8.5"
tokio = { version = "1.28.0", features = ["net", "rt-multi-thread", "time", "sync"] }
tokio-rustls = { version = "0.24.0", features = ["early-data"], optional = true }
rustls-pemfile = "1.0.2"
tokio = { version = "1.29.1", features = ["net", "rt-multi-thread", "time", "sync"] }
tokio-rustls = { version = "0.24.1", features = ["early-data"], optional = true }
rustls-pemfile = "1.0.3"
[profile.release]
codegen-units = 1