mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: rakita <rakita@users.noreply.github.com>
37 lines
688 B
TOML
37 lines
688 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-storage-errors.workspace = true
|
|
|
|
alloy-primitives.workspace = true
|
|
alloy-rlp.workspace = true
|
|
alloy-eips.workspace = true
|
|
nybbles.workspace = true
|
|
|
|
revm-database-interface.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"alloy-eips/std",
|
|
"alloy-primitives/std",
|
|
"alloy-rlp/std",
|
|
"thiserror/std",
|
|
"nybbles/std",
|
|
"revm-database-interface/std",
|
|
"reth-storage-errors/std",
|
|
]
|