Files
nanoreth/crates/revm/Cargo.toml
Arsenii Kulikov 336c3d1fac feat: alloy-evm and new revm integration (#14021)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: rakita <rakita@users.noreply.github.com>
2025-02-17 19:59:23 +00:00

65 lines
1.4 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
revm-database.workspace = true
revm-inspector.workspace = true
[dev-dependencies]
reth-trie.workspace = true
reth-ethereum-forks.workspace = true
alloy-primitives.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",
"revm-database/std",
"revm-inspector/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",
"revm/test-utils",
]
serde = [
"revm/serde",
"alloy-primitives/serde",
"alloy-consensus/serde",
"reth-trie?/serde",
"reth-ethereum-forks/serde",
"revm-database/serde",
"reth-primitives-traits/serde",
"revm-inspector/serde",
]