mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-engine-service"
|
|
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-beacon-consensus.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-engine-tree.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-network-p2p.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-prune.workspace = true
|
|
reth-stages-api.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-node-types.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-engine-primitives.workspace = true
|
|
|
|
# async
|
|
futures.workspace = true
|
|
pin-project.workspace = true
|
|
|
|
# misc
|
|
thiserror.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-engine-tree = { workspace = true, features = ["test-utils"] }
|
|
reth-ethereum-engine-primitives.workspace = true
|
|
reth-evm-ethereum.workspace = true
|
|
reth-exex-types.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-chainspec.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-stream.workspace = true
|