Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
686 changes: 352 additions & 334 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ license = "Apache-2.0"
publish = false

[workspace.dependencies]
async-trait = "0.1.89"
alloy = { version = "1.3", features = ["essentials"] }
built = { version = "0.8.0", features = ["git2", "chrono", "cargo-lock"] }
blst = "0.3"
Expand Down
17 changes: 13 additions & 4 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,24 @@ license.workspace = true
publish.workspace = true

[dependencies]
async-trait.workspace = true
cancellation.workspace = true
chrono.workspace = true
crossbeam.workspace = true
futures.workspace = true
hex.workspace = true
libp2p.workspace = true
vise.workspace = true
pluto-eth2api.workspace = true
prost.workspace = true
prost-types.workspace = true
regex.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
libp2p.workspace = true
regex.workspace = true
prost.workspace = true
prost-types.workspace = true
tokio-util.workspace = true
tracing.workspace = true

[dev-dependencies]
rand.workspace = true
Expand All @@ -27,6 +33,9 @@ prost.workspace = true
prost-types.workspace = true
hex.workspace = true
chrono.workspace = true
test-case.workspace = true
pluto-eth2util.workspace = true
pluto-testutil.workspace = true

[build-dependencies]
pluto-build-proto.workspace = true
Expand Down
Loading
Loading