Files
nanoreth/crates/storage/codecs/Cargo.toml

38 lines
968 B
TOML

[package]
name = "reth-codecs"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
reth-codecs-derive = { path = "./derive", default-features = false }
alloy-primitives.workspace = true
bytes.workspace = true
[dev-dependencies]
alloy-primitives = { workspace = true, features = ["arbitrary", "serde"] }
serde.workspace = true
modular-bitfield = "0.11.2"
test-fuzz.workspace = true
serde_json.workspace = true
arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true
proptest-derive.workspace = true
[features]
default = ["compact", "std"]
std = ["alloy-primitives/std", "bytes/std"]
compact = ["reth-codecs-derive/compact"]
scale = ["reth-codecs-derive/scale"]
postcard = ["reth-codecs-derive/postcard"]
no_codec = ["reth-codecs-derive/no_codec"]
optimism = ["reth-codecs-derive/optimism"]