Skip to content

Commit 623e780

Browse files
authored
Enable default features for the url crate (#54)
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`).
1 parent e4f3068 commit 623e780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tracing = ["dep:tracing"]
1717

1818
[dependencies]
1919
tracing = { version = "0.1", optional = true }
20-
url = { version = "^2.2", default-features = false }
20+
url = { version = "2.2" }
2121
strum = { version = "^0.26", features = ["derive"] }
2222
thiserror = "^1.0"
2323

0 commit comments

Comments
 (0)