mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 01:28:21 -05: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
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "reth-interfaces"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/foundry-rs/reth"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
reth-codecs = { path = "../codecs" }
|
|
reth-primitives = { path = "../primitives" }
|
|
reth-rpc-types = { path = "../net/rpc-types" }
|
|
async-trait = "0.1.57"
|
|
thiserror = "1.0.37"
|
|
auto_impl = "1.0"
|
|
tokio = { version = "1.21.2", features = ["sync"] }
|
|
bytes = "1.2"
|
|
|
|
# TODO(onbjerg): We only need this for [BlockBody]
|
|
reth-eth-wire = { path = "../net/eth-wire" }
|
|
|
|
# codecs
|
|
serde = { version = "1.0.*", default-features = false }
|
|
postcard = { version = "1.0.2", features = ["alloc"] }
|
|
heapless = "0.7.16"
|
|
parity-scale-codec = { version = "3.2.1", features = ["bytes"] }
|
|
futures = "0.3.25"
|
|
tokio-stream = "0.1.11"
|
|
rand = "0.8.5"
|
|
arbitrary = { version = "1.1.7", features = ["derive"], optional = true}
|
|
|
|
[dev-dependencies]
|
|
reth-db = { path = "../db", features = ["test-utils"] }
|
|
test-fuzz = "3.0.4"
|
|
tokio = { version = "1.21.2", features = ["full"] }
|
|
tokio-stream = { version = "0.1.11", features = ["sync"] }
|
|
arbitrary = { version = "1.1.7", features = ["derive"]}
|
|
|
|
[features]
|
|
bench = []
|
|
test-utils = ["tokio-stream/sync"]
|