mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
* chore: clean up `.gitignore` * fix: make RO cursors `Send + Sync` * feat(wip): bodies stage * driveby: improve docs * chore: don't panic if we're the first stage * chore: use `Vec` for ommers * feat: error handling in bodies downloader * chore: remove stale comment * chore: pascal-case stage id * refactor: remove unused new fns * refactor: distinguish downloaders with prefix * refactor: move downloader errs to own module * refactor: `stream_bodies` -> `bodies_stream` * test: fix borked imports in header stage * test: clean up header tests * test: add basic body stage tests * test: add 2 more body stage test skeletons * test: move generator test utils to own module * refactor: move proof functions to primitives crate * feat: add block generator test utils * test: more body stage tests * chore: fix typo (`Cannonical*` -> `Canonical`) * docs: document `bodies_to_download` * test: more body stage tests * test: more body stage tests * refactor: clean up body stage tests a bit * test: fix broken tests * refactor: clean up body stage tests * test: more body stage tests
30 lines
690 B
TOML
30 lines
690 B
TOML
[workspace]
|
|
members = [
|
|
"bin/reth",
|
|
"crate-template",
|
|
"crates/common/rlp",
|
|
"crates/common/rlp-derive",
|
|
"crates/consensus",
|
|
"crates/db",
|
|
"crates/executor",
|
|
"crates/interfaces",
|
|
"crates/net/p2p",
|
|
"crates/net/ecies",
|
|
"crates/net/eth-wire",
|
|
"crates/net/discv4",
|
|
"crates/net/network",
|
|
"crates/net/ipc",
|
|
"crates/net/rpc",
|
|
"crates/net/rpc-api",
|
|
"crates/net/rpc-types",
|
|
"crates/net/headers-downloaders",
|
|
"crates/net/bodies-downloaders",
|
|
"crates/primitives",
|
|
"crates/stages",
|
|
"crates/transaction-pool",
|
|
"crates/db",
|
|
"crates/libmdbx-rs",
|
|
"crates/libmdbx-rs/mdbx-sys"
|
|
]
|
|
default-members = ["bin/reth"]
|