Skip to content

Commit

Permalink
Enable default features for url crate
Browse files Browse the repository at this point in the history
In order to make the rust-url compatible with no_std, the crate needs to introduce a `std` feature and make it default.
See servo/rust-url#831.

In order to reduce impact, downstream libraries should leave url's default features enabled (no other features are currently `default`).
  • Loading branch information
domenukk committed Sep 20, 2024
1 parent ad8aecd commit 2313695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ tracing-opentelemetry = { version = "0.24", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false }
ulid = { version = "1", default-features = false }
unicase = { version = "2.7.0", default-features = false }
url = { version = "2", default-features = false }
url = { version = "2" }
uuid = { version = "1", default-features = false }
vaultrs = { version = "0.7", default-features = false }
wadm = { version = "0.14.0", default-features = false }
Expand Down

0 comments on commit 2313695

Please sign in to comment.