diff --git a/Cargo.toml b/Cargo.toml index 9c2543a..d289d37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ tls = ["libdoh/tls"] [dependencies] libdoh = { path = "src/libdoh", version = "0.9.4", default-features = false } -clap = { version = "3.2.22", features = ["std", "cargo", "wrap_help"] } +clap = { version = "3", features = ["std", "cargo", "wrap_help"] } dnsstamps = "0.1.9" mimalloc = { version = "0.1.29", default-features = false } diff --git a/src/libdoh/Cargo.toml b/src/libdoh/Cargo.toml index 9d3c9eb..cd04489 100644 --- a/src/libdoh/Cargo.toml +++ b/src/libdoh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdoh" -version = "0.9.4" +version = "0.9.5" authors = ["Frank Denis "] description = "DoH and Oblivious DoH library for the rust-doh app" keywords = ["dns","https","doh","odoh","proxy"] @@ -21,11 +21,10 @@ base64 = "0.13.0" byteorder = "1.4.3" bytes = "1.2.1" futures = "0.3.24" -hpke = "0.5.1" hyper = { version = "0.14.20", default-features = false, features = ["server", "http1", "http2", "stream"] } -odoh-rs = "1.0.0-alpha.1" +odoh-rs = "1.0.0" rand = "0.8.5" -tokio = { version = "1.21.1", features = ["net", "rt-multi-thread", "time", "sync"] } +tokio = { version = "1.21.2", features = ["net", "rt-multi-thread", "time", "sync"] } tokio-rustls = { version = "0.23.4", features = ["early-data"], optional = true } rustls-pemfile = "1.0.1"