From 7c3ec6f4cc4d037e56d8ba09fee2a3b301b6caad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 17 Nov 2024 18:42:44 +0100 Subject: [PATCH] Remove `default-features = false` from the `url` crate https://github.com/servo/rust-url/issues/992 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8dcc2fc..3afd3ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,4 +47,4 @@ sha2 = { version = "0.10.6", default-features = false, optional = true } sha3 = { version = "0.10.7", default-features = false, optional = true } thiserror = { version = "2.0.3", default-features = false, optional = true } unicode-normalization = { version = "0.1.22", default-features = false, optional = true } -url = { version = "2.3.1", default-features = false, optional = true } +url = { version = "2.3.1", optional = true }