Skip to content
Open
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
13 changes: 12 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 @@ -89,6 +89,8 @@ testcontainers = "0.26"
test-case = "3.3"
tree_hash = "0.12"
tree_hash_derive = "0.12"
ssz = { package = "ethereum_ssz", version = "0.10.1" }
typenum = "1"
wiremock = "0.6"

# Crates in the workspace
Expand Down
9 changes: 9 additions & 0 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,29 @@ crossbeam.workspace = true
hex.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
base64.workspace = true
thiserror.workspace = true
tokio.workspace = true
libp2p.workspace = true
regex.workspace = true
prost.workspace = true
prost-types.workspace = true
pluto-eth2api.workspace = true
pluto-eth2util.workspace = true
tree_hash.workspace = true

[dev-dependencies]
alloy.workspace = true
rand.workspace = true
libp2p.workspace = true
prost.workspace = true
prost-types.workspace = true
hex.workspace = true
chrono.workspace = true
ssz.workspace = true
typenum.workspace = true
test-case.workspace = true

[build-dependencies]
pluto-build-proto.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions crates/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ pub mod qbft;
/// Types for the Charon core.
pub mod types;

/// Signed data wrappers and helpers.
pub mod signeddata;

/// Consensus-related functionality.
pub mod consensus;

Expand Down
Loading
Loading