From 4f28d6c7a4ca95b20eedbd4ba374c7af5cd85232 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 6 Dec 2024 21:07:21 +0100 Subject: [PATCH] chore: disable url default features (#13191) --- Cargo.toml | 2 +- crates/net/peers/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 08fa42e10..650be8337 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -527,7 +527,7 @@ syn = "2.0" thiserror = { version = "2.0.0", default-features = false } tracing = "0.1.0" tracing-appender = "0.2" -url = "2.3" +url = { version = "2.3", default-features = false } zstd = "0.13" byteorder = "1" diff --git a/crates/net/peers/Cargo.toml b/crates/net/peers/Cargo.toml index 8ca5faec9..4cfc0aee3 100644 --- a/crates/net/peers/Cargo.toml +++ b/crates/net/peers/Cargo.toml @@ -41,7 +41,8 @@ std = [ "alloy-rlp/std", "secp256k1?/std", "serde_with/std", - "thiserror/std" + "thiserror/std", + "url/std" ] secp256k1 = ["dep:secp256k1", "enr/secp256k1"] net = ["dep:tokio", "tokio?/net"]