Skip to content

Commit

Permalink
chore: make url crate a workspace dependency (#2221)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden authored Nov 6, 2024
1 parent ad2c7d2 commit 1f0106e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion neqo-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion neqo-http3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit 1f0106e

Please sign in to comment.