mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Bjerg <onbjerg@users.noreply.github.com> Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: joshieDo <ranriver@protonmail.com> Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Oliver Nordbjerg <hi@notbjerg.me> Co-authored-by: Thomas Coratger <thomas.coratger@gmail.com>
51 lines
1.1 KiB
TOML
51 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-node-builder"
|
|
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-auto-seal-consensus.workspace = true
|
|
reth-beacon-consensus.workspace = true
|
|
reth-blockchain-tree.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-revm.workspace = true
|
|
reth-db.workspace = true
|
|
reth-rpc-engine-api.workspace = true
|
|
reth-rpc.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-network.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-static-file.workspace = true
|
|
reth-prune.workspace = true
|
|
reth-stages.workspace = true
|
|
reth-config.workspace = true
|
|
|
|
|
|
## async
|
|
futures.workspace = true
|
|
tokio = { workspace = true, features = [
|
|
"sync",
|
|
"macros",
|
|
"time",
|
|
"rt-multi-thread",
|
|
] }
|
|
|
|
## misc
|
|
eyre.workspace = true
|
|
fdlimit = "0.3.0"
|
|
confy.workspace = true
|