diff --git a/Cargo.toml b/Cargo.toml index b1ac29b..971291f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,20 +23,20 @@ name="internal" harness = false [dependencies] -hyper = { version = "0.14.20", features = ["client"] } +hyper = { version = "0.14.20", default-features = false } lazy_static = "1.4.0" -tokio = { version = "1.17.0", features = ["io-util", "rt"] } -tracing = "0.1.34" +tokio = { version = "1.17.0", default-features = false } +tracing = { default-features = false, version = "0.1.34" } [dev-dependencies] hyper = { version = "0.14.18", features = ["server"] } futures = "0.3.21" async-trait = "0.1.53" -async-tungstenite = { version = "0.17", features = ["tokio-runtime"] } +async-tungstenite = { version = "0.18", features = ["tokio-runtime"] } tokio-test = "0.4.2" test-context = "0.1.3" tokiotest-httpserver = "0.2.1" -hyper-trust-dns = { version = "0.4.2", features = [ +hyper-trust-dns = { version = "0.5.0", features = [ "rustls-http2", "dnssec-ring", "dns-over-https-rustls", @@ -45,8 +45,8 @@ hyper-trust-dns = { version = "0.4.2", features = [ rand = "0.8.5" tungstenite = "0.17" url = "2.2" -criterion = "0.3.5" +criterion = "0.4" [features] -__bench=[] \ No newline at end of file +__bench=[]