mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 01:28:21 -05:00
* feat(net): add ecies crate * cargo fmt * add hex-literal and proptest to dev-dependencies * adds std feature to reth-rlp * document util * document more * chore: allow missing docs in ecies/algorith.rs * feat(ecies): improve error handling remove anyhow and strictly type all errors * refactor(ecies): movem ingress/egress to lib.rs * chore(ecies): allow missing docs in mac * chore(ecies): cleanup utils * refactor(ecies): move ECIES Codec to separate file * refactor(ecies): rename proto to stream * add test scaffold * implement server/client read/write test * chore: clippy / fmt Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
22 lines
459 B
TOML
22 lines
459 B
TOML
[workspace]
|
|
members = [
|
|
"bin/reth",
|
|
"crate-template",
|
|
"crates/common/rlp",
|
|
"crates/common/rlp-derive",
|
|
"crates/db",
|
|
"crates/executor",
|
|
"crates/interfaces",
|
|
"crates/net/p2p",
|
|
"crates/net/ecies",
|
|
"crates/net/eth-wire",
|
|
"crates/net/rpc",
|
|
"crates/net/rpc-api",
|
|
"crates/net/rpc-types",
|
|
"crates/primitives",
|
|
"crates/stages",
|
|
"crates/transaction-pool",
|
|
"crates/db"
|
|
]
|
|
default-members = ["bin/reth"]
|