diff --git a/Cargo.lock b/Cargo.lock index b4f1bd08ce..7a6909619b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -268,19 +268,6 @@ dependencies = [ "syn 2.0.49", ] -[[package]] -name = "alloy-rpc-types" -version = "0.1.0" -source = "git+https://github.com/alloy-rs/alloy.git#e127fed9118b53c9f6776ce7aed412788827e9a5" -dependencies = [ - "alloy-primitives", - "alloy-rlp", - "itertools 0.12.1", - "serde", - "serde_json", - "thiserror", -] - [[package]] name = "amcl" version = "0.3.0" @@ -361,7 +348,7 @@ dependencies = [ "ark-std 0.4.0", "derivative", "digest 0.10.7", - "itertools 0.10.5", + "itertools", "num-bigint", "num-traits", "paste", @@ -913,7 +900,7 @@ dependencies = [ "genesis", "hex", "int_to_bytes", - "itertools 0.10.5", + "itertools", "kzg", "lazy_static", "lighthouse_metrics", @@ -996,7 +983,7 @@ dependencies = [ "fnv", "futures", "hex", - "itertools 0.10.5", + "itertools", "lazy_static", "lighthouse_metrics", "lighthouse_network", @@ -1553,7 +1540,7 @@ name = "compare_fields" version = "0.2.0" dependencies = [ "compare_fields_derive", - "itertools 0.10.5", + "itertools", ] [[package]] @@ -1658,7 +1645,7 @@ dependencies = [ "clap", "criterion-plot", "csv", - "itertools 0.10.5", + "itertools", "lazy_static", "num-traits", "oorandom", @@ -1680,7 +1667,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876" dependencies = [ "cast", - "itertools 0.10.5", + "itertools", ] [[package]] @@ -2796,7 +2783,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e61ffea29f26e8249d35128a82ec8d3bd4fbc80179ea5f5e5e3daafef6a80fcb" dependencies = [ "ethereum-types 0.14.1", - "itertools 0.10.5", + "itertools", "smallvec", ] @@ -3025,7 +3012,6 @@ dependencies = [ "alloy-consensus", "alloy-primitives", "alloy-rlp", - "alloy-rpc-types", "arc-swap", "async-trait", "builder_client", @@ -4372,15 +4358,6 @@ dependencies = [ "either", ] -[[package]] -name = "itertools" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] - [[package]] name = "itoa" version = "1.0.10" @@ -5495,7 +5472,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37cb4045d5677b7da537f8cb5d0730d5b6414e3cc81c61e4b50e1f0cbdc73909" dependencies = [ "darling", - "itertools 0.10.5", + "itertools", "proc-macro2", "quote", "smallvec", @@ -5767,7 +5744,7 @@ dependencies = [ "hex", "if-addrs 0.6.7", "igd-next", - "itertools 0.10.5", + "itertools", "lazy_static", "lighthouse_metrics", "lighthouse_network", @@ -6084,7 +6061,7 @@ dependencies = [ "derivative", "ethereum_ssz", "ethereum_ssz_derive", - "itertools 0.10.5", + "itertools", "lazy_static", "lighthouse_metrics", "maplit", @@ -8152,7 +8129,7 @@ dependencies = [ "derivative", "ethereum_serde_utils", "ethereum_ssz", - "itertools 0.10.5", + "itertools", "serde", "serde_derive", "smallvec", @@ -8174,7 +8151,7 @@ dependencies = [ "ethereum_ssz_derive", "int_to_bytes", "integer-sqrt", - "itertools 0.10.5", + "itertools", "lazy_static", "lighthouse_metrics", "merkle_proof", @@ -8214,7 +8191,7 @@ dependencies = [ "directory", "ethereum_ssz", "ethereum_ssz_derive", - "itertools 0.10.5", + "itertools", "lazy_static", "leveldb", "lighthouse_metrics", @@ -8287,7 +8264,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75b9e5728aa1a87141cefd4e7509903fc01fa0dcb108022b1e841a67c5159fc5" dependencies = [ "darling", - "itertools 0.10.5", + "itertools", "proc-macro2", "quote", "smallvec", @@ -9018,7 +8995,7 @@ dependencies = [ "ethereum_ssz_derive", "hex", "int_to_bytes", - "itertools 0.10.5", + "itertools", "kzg", "lazy_static", "log", @@ -9238,7 +9215,7 @@ dependencies = [ "futures", "hex", "hyper 1.1.0", - "itertools 0.10.5", + "itertools", "lazy_static", "libsecp256k1", "lighthouse_metrics", diff --git a/beacon_node/execution_layer/Cargo.toml b/beacon_node/execution_layer/Cargo.toml index d7d889ca73..c56debe538 100644 --- a/beacon_node/execution_layer/Cargo.toml +++ b/beacon_node/execution_layer/Cargo.toml @@ -53,5 +53,4 @@ arc-swap = "1.6.0" eth2_network_config = { workspace = true } alloy-rlp = "0.3.4" alloy-consensus = { git = "https://github.com/alloy-rs/alloy.git", rev = "974d488bab5e21e9f17452a39a4bfa56677367b2" } -alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git" } alloy-primitives = "0.6.2"