diff --git a/Cargo.toml b/Cargo.toml index 8d3c8726d1..66b928d4a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,6 +32,8 @@ rust-version = "1.76.0" log = { version = "0.4", default-features = false } qlog = { version = "0.13", default-features = false } quinn-udp = { version = "0.5.6", default-features = false, features = ["direct-log"] } +url = { version = "2.5", default-features = false, features = ["std"] } + [workspace.lints.clippy] cargo = { level = "warn", priority = -1 } diff --git a/neqo-bin/Cargo.toml b/neqo-bin/Cargo.toml index df8014ba2f..2c4eef0786 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, features = ["std"] } +url = { workspace = true } [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 491a1227ff..ebabaf885d 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, features = ["std"] } +url = { workspace = true } [dev-dependencies] test-fixture = { path = "../test-fixture" }