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.

To reduce impact, downstream libraries should leave url's default features enabled (no other features are currently `default`).
  • Loading branch information
domenukk authored and rvolosatovs committed Sep 23, 2024
1 parent 1775635 commit 92090c9
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 @@ -121,7 +121,7 @@ tokio-stream = { version = "0.1", default-features = false }
tokio-util = { version = "0.7", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false }
url = { version = "2", default-features = false }
url = { version = "2" }
uuid = { version = "1", default-features = false }
wasi-preview1-component-adapter-provider = { version = "24", default-features = false }
wasm-tokio = { version = "0.6", default-features = false }
Expand Down

0 comments on commit 92090c9

Please sign in to comment.