Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"crates/dkg",
"crates/eth2api",
"crates/eth2util",
"crates/eth1wrap",
"crates/k1util",
"crates/relay-server",
"crates/p2p",
Expand Down Expand Up @@ -100,6 +101,7 @@ pluto-crypto = { path = "crates/crypto" }
pluto-dkg = { path = "crates/dkg" }
pluto-eth2api = { path = "crates/eth2api" }
pluto-eth2util = { path = "crates/eth2util" }
pluto-eth1wrap = { path = "crates/eth1wrap" }
pluto-k1util = { path = "crates/k1util" }
pluto-relay-server = { path = "crates/relay-server" }
pluto-testutil = { path = "crates/testutil" }
Expand Down
1 change: 0 additions & 1 deletion crates/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ regex.workspace = true
thiserror.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
alloy.workspace = true
url.workspace = true
reqwest.workspace = true
serde.workspace = true
Expand Down
3 changes: 0 additions & 3 deletions crates/app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ pub mod retry;
/// Deadline
pub mod deadline;

/// Ethereum EL RPC client management.
pub mod eth1wrap;

/// Featureset defines a set of global features and their rollout status.
pub mod featureset;

Expand Down
2 changes: 2 additions & 0 deletions crates/cluster/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ rand_core.workspace = true
libp2p.workspace = true
pluto-p2p.workspace = true
pluto-eth2util.workspace = true
pluto-eth1wrap.workspace = true
pluto-k1util.workspace = true
k256.workspace = true

Expand All @@ -33,6 +34,7 @@ prost-build.workspace = true
test-case.workspace = true
pluto-testutil.workspace = true
rand.workspace = true
tokio.workspace = true

[lints]
workspace = true
Loading