From 36641a922491640f1e4816ca6bac6d0aa707f91b Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Fri, 20 Sep 2024 15:17:35 +0200 Subject: [PATCH] Enable default features for the url crate In order to make the rust-url compatible with no_std, the crate needs to introduce a `std` feature and make it default. See https://github.com/servo/rust-url/pull/831. In order to reduce impact, downstream libraries should leave url's default features enabled (no other features are currently `default`). --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9d7480d..95c8316 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"