mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
45 lines
917 B
TOML
45 lines
917 B
TOML
[package]
|
|
name = "reth-evm-optimism"
|
|
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-evm.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-revm.workspace = true
|
|
reth-execution-errors.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-prune-types.workspace = true
|
|
reth-consensus-common.workspace = true
|
|
|
|
# Optimism
|
|
reth-optimism-consensus.workspace = true
|
|
|
|
# revm
|
|
revm.workspace = true
|
|
revm-primitives.workspace = true
|
|
|
|
# misc
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-revm = { workspace = true, features = ["test-utils"] }
|
|
|
|
[features]
|
|
optimism = [
|
|
"reth-primitives/optimism",
|
|
"reth-provider/optimism",
|
|
"reth-optimism-consensus/optimism",
|
|
"reth-revm/optimism",
|
|
]
|