mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
56 lines
1.2 KiB
TOML
56 lines
1.2 KiB
TOML
[package]
|
|
name = "reth-optimism-chainspec"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "EVM chain spec implementation for optimism."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chainspec = { workspace = true, features = ["optimism"] }
|
|
reth-ethereum-forks.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-network-peers.workspace = true
|
|
|
|
# op-reth
|
|
reth-optimism-forks.workspace = true
|
|
|
|
# ethereum
|
|
alloy-chains.workspace = true
|
|
alloy-genesis.workspace = true
|
|
alloy-primitives.workspace = true
|
|
|
|
# op
|
|
op-alloy-rpc-types.workspace = true
|
|
|
|
# io
|
|
serde_json.workspace = true
|
|
|
|
# misc
|
|
derive_more.workspace = true
|
|
once_cell.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-chainspec = { workspace = true, features = ["test-utils"] }
|
|
alloy-genesis.workspace = true
|
|
op-alloy-rpc-types.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"alloy-chains/std",
|
|
"alloy-genesis/std",
|
|
"alloy-primitives/std",
|
|
"op-alloy-rpc-types/std",
|
|
"reth-chainspec/std",
|
|
"reth-ethereum-forks/std",
|
|
"reth-primitives-traits/std",
|
|
"reth-optimism-forks/std",
|
|
]
|