Files
nanoreth/crates/ethereum/evm/Cargo.toml
2025-04-17 07:17:59 +00:00

69 lines
1.6 KiB
TOML

[package]
name = "reth-evm-ethereum"
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-execution-types.workspace = true
reth-chainspec.workspace = true
reth-ethereum-forks.workspace = true
reth-revm.workspace = true
reth-evm.workspace = true
reth-primitives.workspace = true
# Ethereum
reth-primitives-traits.workspace = true
# Alloy
alloy-primitives.workspace = true
alloy-eips.workspace = true
alloy-evm.workspace = true
alloy-sol-types.workspace = true
alloy-consensus.workspace = true
sha2.workspace = true
serde_json.workspace = true
serde = { workspace = true, features = ["derive"] }
rmp-serde.workspace = true
lz4_flex.workspace = true
reth-hyperliquid-types.workspace = true
parking_lot.workspace = true
[dev-dependencies]
reth-testing-utils.workspace = true
reth-evm = { workspace = true, features = ["test-utils"] }
reth-revm = { workspace = true, features = ["test-utils"] }
reth-primitives = { workspace = true, features = ["secp256k1"] }
reth-execution-types.workspace = true
secp256k1.workspace = true
serde_json.workspace = true
alloy-genesis.workspace = true
[features]
default = ["std"]
std = [
"reth-primitives/std",
"reth-revm/std",
"alloy-consensus/std",
"alloy-eips/std",
"alloy-genesis/std",
"alloy-primitives/std",
"secp256k1/std",
"reth-ethereum-forks/std",
"serde_json/std",
"reth-primitives-traits/std",
"reth-chainspec/std",
"alloy-evm/std",
"reth-execution-types/std",
"reth-evm/std",
]