diff --git a/Cargo.toml b/Cargo.toml index 9f1deac..90454a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doh-proxy" -version = "0.9.0" +version = "0.9.1" authors = ["Frank Denis "] description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy" keywords = ["dns","https","doh","odoh","proxy"] diff --git a/src/libdoh/Cargo.toml b/src/libdoh/Cargo.toml index 6f8c1a6..3233783 100644 --- a/src/libdoh/Cargo.toml +++ b/src/libdoh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdoh" -version = "0.9.0" +version = "0.9.1" authors = ["Frank Denis "] description = "DoH and Oblivious DoH library for the rust-doh app" keywords = ["dns","https","doh","odoh","proxy"] @@ -15,17 +15,17 @@ default = ["tls"] tls = ["tokio-rustls"] [dependencies] -anyhow = "1.0.42" -arc-swap = "1.3.0" +anyhow = "1.0.43" +arc-swap = "1.3.2" base64 = "0.13.0" byteorder = "1.4.3" -bytes = "1.0.1" -futures = "0.3.16" +bytes = "1.1.0" +futures = "0.3.17" 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" 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 } [profile.release]