Skip to content

Commit

Permalink
deps: enable std feature of url crate
Browse files Browse the repository at this point in the history
`url` `v0.5.3` and `idna` `v1.0.3` added no-std support:
servo/rust-url#831

Since Neqo sets `default-features = false`, the above would break Neqo.

Related: servo/rust-url#831
  • Loading branch information
mxinden committed Nov 5, 2024
1 parent b61136f commit 13c1d83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 }
url = { version = "2.5", default-features = false, features = ["std"] }

[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 }
url = { version = "2.5", default-features = false, features = ["std"] }

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down

0 comments on commit 13c1d83

Please sign in to comment.