mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
* feat: `reth stage` command * refactor(bin): move init utils to separate file * feat(bin): scaffold stage command for one stage * fix: correctly set from/to for stage range * fix(stage-tool): add unwind before execute to re-exec otherwise we're double executing stuff * fix(stage-tool): use max commit threshold avail * chore: rm unused vars * fix(genesis-init): take a write tx only if needed this avoids blocking by accident if we took a write tx expecting that init_genesis would immediately return the hash * feat(stage-tool): add bodies stage Co-authored-by: Oliver Nordbjerg <hi@notbjerg.me>
53 lines
1.6 KiB
TOML
53 lines
1.6 KiB
TOML
[package]
|
|
name = "reth"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives = { path = "../../crates/primitives" }
|
|
reth-db = {path = "../../crates/storage/db", features = ["mdbx", "test-utils"] }
|
|
# TODO: Temporary use of the test-utils feature
|
|
reth-provider = { path = "../../crates/storage/provider", features = ["test-utils"] }
|
|
reth-stages = { path = "../../crates/stages"}
|
|
reth-interfaces = { path = "../../crates/interfaces", features = ["test-utils"] }
|
|
reth-transaction-pool = { path = "../../crates/transaction-pool" }
|
|
reth-consensus = { path = "../../crates/consensus", features = ["serde"] }
|
|
reth-executor = { path = "../../crates/executor" }
|
|
# reth-rpc = {path = "../../crates/net/rpc"}
|
|
reth-rlp = { path = "../../crates/common/rlp" }
|
|
reth-network = {path = "../../crates/net/network", features = ["serde"] }
|
|
reth-downloaders = {path = "../../crates/net/downloaders" }
|
|
|
|
# tracing
|
|
tracing = "0.1"
|
|
tracing-futures = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# io
|
|
fdlimit = "0.2.1"
|
|
walkdir = "2.3"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
shellexpand = "2.1"
|
|
dirs-next = "2.0.0"
|
|
confy = "0.5"
|
|
|
|
# rpc/metrics
|
|
metrics = "0.20.1"
|
|
metrics-exporter-prometheus = { version = "0.11.0", features = ["http-listener"] }
|
|
metrics-util = "0.14.0"
|
|
|
|
# misc
|
|
eyre = "0.6.8"
|
|
clap = { version = "4.0", features = ["derive", "cargo"] }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.21", features = ["sync", "macros", "rt-multi-thread"] }
|
|
futures = "0.3.25"
|
|
strum = "0.24.1"
|
|
tempfile = { version = "3.3.0" }
|
|
backon = "0.2.0"
|