diff --git a/Cargo.toml b/Cargo.toml index 2772885..1ac4cb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doh-proxy" -version = "0.9.9" +version = "0.9.10" 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 5c85b08..66fc1c3 100644 --- a/src/libdoh/Cargo.toml +++ b/src/libdoh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdoh" -version = "0.9.9" +version = "0.9.10" authors = ["Frank Denis "] 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