Files
reth/crates/revm/Cargo.toml
Wojtek Łopata dc8efbf9b3 feat: add --rpc.evm-memory-limit flag (#19279)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2025-10-30 19:53:43 +00:00

72 lines
1.7 KiB
TOML

[package]
name = "reth-revm"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "reth specific revm utilities"
[lints]
workspace = true
[dependencies]
# reth
reth-primitives-traits.workspace = true
reth-storage-errors.workspace = true
reth-storage-api.workspace = true
reth-trie = { workspace = true, optional = true }
# alloy
alloy-primitives.workspace = true
# revm
revm.workspace = true
[dev-dependencies]
reth-trie.workspace = true
reth-ethereum-forks.workspace = true
alloy-consensus.workspace = true
[features]
default = ["std"]
std = [
"reth-primitives-traits/std",
"alloy-primitives/std",
"revm/std",
"alloy-consensus/std",
"reth-ethereum-forks/std",
"reth-storage-api/std",
"reth-storage-errors/std",
]
witness = ["dep:reth-trie"]
test-utils = [
"dep:reth-trie",
"reth-primitives-traits/test-utils",
"reth-trie?/test-utils",
]
serde = [
"revm/serde",
"alloy-primitives/serde",
"alloy-consensus/serde",
"reth-trie?/serde",
"reth-ethereum-forks/serde",
"reth-primitives-traits/serde",
"reth-storage-api/serde",
]
portable = ["revm/portable"]
optional-balance-check = ["revm/optional_balance_check"]
optional-block-gas-limit = ["revm/optional_block_gas_limit"]
optional-eip3541 = ["revm/optional_eip3541"]
optional-eip3607 = ["revm/optional_eip3607"]
optional-no-base-fee = ["revm/optional_no_base_fee"]
optional-checks = [
"optional-balance-check",
"optional-block-gas-limit",
"optional-eip3541",
"optional-eip3607",
"optional-no-base-fee",
]
memory_limit = ["revm/memory_limit"]