mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
56 lines
1.3 KiB
TOML
56 lines
1.3 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-chainspec.workspace = true
|
|
reth-ethereum-forks.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-primitives = { workspace = true, features = ["reth-codec"] }
|
|
reth-revm.workspace = true
|
|
reth-ethereum-consensus.workspace = true
|
|
reth-consensus.workspace = true
|
|
|
|
# Ethereum
|
|
revm-primitives.workspace = true
|
|
|
|
# Alloy
|
|
alloy-primitives.workspace = true
|
|
alloy-eips.workspace = true
|
|
alloy-sol-types.workspace = true
|
|
alloy-consensus.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-consensus/std",
|
|
"reth-primitives/std",
|
|
"reth-revm/std",
|
|
"alloy-consensus/std",
|
|
"alloy-eips/std",
|
|
"alloy-genesis/std",
|
|
"alloy-primitives/std",
|
|
"revm-primitives/std",
|
|
"secp256k1/std",
|
|
"reth-ethereum-forks/std"
|
|
]
|