From d599393771f9d7d137ea4abf271e1bd118184c73 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 9 Jul 2024 14:30:04 +0200 Subject: [PATCH] chore(deps): rm reth-codecs dep (#9390) --- Cargo.lock | 1 - crates/net/eth-wire-types/Cargo.toml | 1 - crates/net/eth-wire-types/src/header.rs | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cdb35c8f9f..d6ab20f850 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7168,7 +7168,6 @@ dependencies = [ "proptest-derive 0.5.0", "rand 0.8.5", "reth-chainspec", - "reth-codecs", "reth-codecs-derive", "reth-primitives", "serde", diff --git a/crates/net/eth-wire-types/Cargo.toml b/crates/net/eth-wire-types/Cargo.toml index e9d502850a..671883dae6 100644 --- a/crates/net/eth-wire-types/Cargo.toml +++ b/crates/net/eth-wire-types/Cargo.toml @@ -14,7 +14,6 @@ workspace = true [dependencies] # reth reth-chainspec.workspace = true -reth-codecs.workspace = true reth-codecs-derive.workspace = true reth-primitives.workspace = true diff --git a/crates/net/eth-wire-types/src/header.rs b/crates/net/eth-wire-types/src/header.rs index f6b3b8ac4c..607d6ba3e2 100644 --- a/crates/net/eth-wire-types/src/header.rs +++ b/crates/net/eth-wire-types/src/header.rs @@ -2,7 +2,7 @@ use alloy_rlp::{Decodable, Encodable}; use bytes::BufMut; -use reth_codecs::derive_arbitrary; +use reth_codecs_derive::derive_arbitrary; /// Represents the direction for a headers request depending on the `reverse` field of the request. /// > The response must contain a number of block headers, of rising number when reverse is 0,