diff --git a/neqo-bin/Cargo.toml b/neqo-bin/Cargo.toml index 4c155bb3c6..df8014ba2f 100644 --- a/neqo-bin/Cargo.toml +++ b/neqo-bin/Cargo.toml @@ -41,7 +41,7 @@ qlog = { workspace = true } quinn-udp = { workspace = true } regex = { version = "1.9", default-features = false, features = ["unicode-perl"] } tokio = { version = "1", default-features = false, features = ["net", "time", "macros", "rt", "rt-multi-thread"] } -url = { version = "2.5", default-features = false } +url = { version = "2.5", default-features = false, features = ["std"] } [dev-dependencies] criterion = { version = "0.5", default-features = false, features = ["async_tokio"] } diff --git a/neqo-http3/Cargo.toml b/neqo-http3/Cargo.toml index 0055cbf326..491a1227ff 100644 --- a/neqo-http3/Cargo.toml +++ b/neqo-http3/Cargo.toml @@ -25,7 +25,7 @@ neqo-qpack = { path = "./../neqo-qpack" } neqo-transport = { path = "./../neqo-transport" } qlog = { workspace = true } sfv = { version = "0.9", default-features = false } -url = { version = "2.5", default-features = false } +url = { version = "2.5", default-features = false, features = ["std"] } [dev-dependencies] test-fixture = { path = "../test-fixture" }