Skip to content

Commit

Permalink
Enable default features for the 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 authored Sep 20, 2024
1 parent e4f3068 commit 36641a9
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 @@ -17,7 +17,7 @@ tracing = ["dep:tracing"]

[dependencies]
tracing = { version = "0.1", optional = true }
url = { version = "^2.2", default-features = false }
url = { version = "2.2" }
strum = { version = "^0.26", features = ["derive"] }
thiserror = "^1.0"

Expand Down

0 comments on commit 36641a9

Please sign in to comment.