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
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ license.workspace = true
publish.workspace = true

[dependencies]
async-trait.workspace = true
cancellation.workspace = true
chrono.workspace = true
crossbeam.workspace = true
dyn-clone.workspace = true
dyn-eq.workspace = true
hex.workspace = true
k256.workspace = true
libp2p.workspace = true
vise.workspace = true
pluto-crypto.workspace = true
pluto-eth2api.workspace = true
pluto-k1util.workspace = true
prost.workspace = true
prost-types.workspace = true
regex.workspace = true
Expand All @@ -40,7 +41,6 @@ alloy.workspace = true
clap.workspace = true
rand.workspace = true
libp2p.workspace = true
k256.workspace = true
prost.workspace = true
prost-types.workspace = true
hex.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/core/src/consensus/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ pub mod protocols;

/// Consensus instance I/O channels.
pub mod instance;
/// QBFT consensus wrapper.
pub mod qbft;

/// Consensus round timers.
pub mod timer;
4 changes: 4 additions & 0 deletions crates/core/src/consensus/qbft/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
//! QBFT consensus wrapper.

/// QBFT protobuf message wrapper.
pub mod msg;
Loading
Loading