chore: disable url default features (#13191)

This commit is contained in:
Matthias Seitz
2024-12-06 21:07:21 +01:00
committed by GitHub
parent cd13bd91cd
commit 4f28d6c7a4
2 changed files with 3 additions and 2 deletions

View File

@ -527,7 +527,7 @@ syn = "2.0"
thiserror = { version = "2.0.0", default-features = false } thiserror = { version = "2.0.0", default-features = false }
tracing = "0.1.0" tracing = "0.1.0"
tracing-appender = "0.2" tracing-appender = "0.2"
url = "2.3" url = { version = "2.3", default-features = false }
zstd = "0.13" zstd = "0.13"
byteorder = "1" byteorder = "1"

View File

@ -41,7 +41,8 @@ std = [
"alloy-rlp/std", "alloy-rlp/std",
"secp256k1?/std", "secp256k1?/std",
"serde_with/std", "serde_with/std",
"thiserror/std" "thiserror/std",
"url/std"
] ]
secp256k1 = ["dep:secp256k1", "enr/secp256k1"] secp256k1 = ["dep:secp256k1", "enr/secp256k1"]
net = ["dep:tokio", "tokio?/net"] net = ["dep:tokio", "tokio?/net"]