[package] name = "reth-eth-wire-types" description = "types for eth-wire" version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true homepage.workspace = true repository.workspace = true [lints] workspace = true [dependencies] # reth reth-chainspec.workspace = true reth-codecs-derive.workspace = true reth-primitives.workspace = true # ethereum alloy-chains = { workspace = true, features = ["rlp"] } alloy-rlp = { workspace = true, features = ["derive"] } alloy-genesis.workspace = true bytes.workspace = true derive_more.workspace = true thiserror.workspace = true serde = { workspace = true, optional = true } # arbitrary utils arbitrary = { workspace = true, features = ["derive"], optional = true } proptest = { workspace = true, optional = true } proptest-arbitrary-interop = { workspace = true, optional = true } [dev-dependencies] reth-primitives = { workspace = true, features = ["arbitrary"] } alloy-chains = { workspace = true, features = ["arbitrary"] } arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true proptest-arbitrary-interop.workspace = true rand.workspace = true [features] arbitrary = [ "reth-primitives/arbitrary", "alloy-chains/arbitrary", "dep:arbitrary", "dep:proptest", "dep:proptest-arbitrary-interop", ] serde = ["dep:serde"]