Files
nanoreth/crates/evm/execution-errors/Cargo.toml
Arsenii Kulikov 98a021ee7d feat: abstract over Evm::Error (#14085)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2025-01-30 13:02:20 +00:00

36 lines
672 B
TOML

[package]
name = "reth-execution-errors"
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-consensus.workspace = true
reth-storage-errors.workspace = true
reth-prune-types.workspace = true
alloy-primitives.workspace = true
alloy-rlp.workspace = true
alloy-eips.workspace = true
nybbles.workspace = true
thiserror.workspace = true
[features]
default = ["std"]
std = [
"reth-consensus/std",
"alloy-eips/std",
"alloy-primitives/std",
"alloy-rlp/std",
"thiserror/std",
"nybbles/std",
]