mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-07 23:53:11 +00:00
22 lines
644 B
TOML
22 lines
644 B
TOML
[workspace]
|
|
members = ["evm/node", "evm/sequencer-mempool"]
|
|
resolver = "3"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
# Internal
|
|
evm-node = { path = "evm/node" }
|
|
evm-sequencer-mempool = { path = "evm/sequencer-mempool" }
|
|
|
|
# External
|
|
clap = { version = "4.5" }
|
|
eyre = { version = "0.6" }
|
|
futures-util = { version = "0.3" }
|
|
jsonrpsee = { version = "0.24" }
|
|
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.8" }
|
|
reth-cli-commands = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.8" }
|
|
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.8" }
|
|
tokio = { version = "1.0" }
|