From 92090c97ce7b198c86077a8c9b4c4eb0fed9d3d2 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Fri, 20 Sep 2024 15:22:17 +0200 Subject: [PATCH] Enable default features for 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. 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 9a41aba4..883cc7f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 }