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
50 changes: 25 additions & 25 deletions Cargo.lock

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

22 changes: 12 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ repository = "https://github.com/boundless-xyz/The-Signal.Ethereum/"
opt-level = 3

[profile.release]
opt-level = 3 # Optimize for build time and code size; use "3" for maximum runtime performance
codegen-units = 16 # Increases parallelism in code generation
debug = false # Disable debug information to speed up builds
lto = false # Link Time Optimization disabled for faster linking
panic = "unwind" # Keeps unwinding for better build speed; "abort" is faster but changes behavior
incremental = false # Disable incremental compilation for deterministic builds
opt-level = 3 # Optimize for build time and code size; use "3" for maximum runtime performance
codegen-units = 16 # Increases parallelism in code generation
debug = false # Disable debug information to speed up builds
lto = false # Link Time Optimization disabled for faster linking
panic = "unwind" # Keeps unwinding for better build speed; "abort" is faster but changes behavior
incremental = false # Disable incremental compilation for deterministic builds
overflow-checks = false # Skip overflow checks for better performance

[workspace.dependencies]
Expand All @@ -36,9 +36,9 @@ risc0-zkvm = { version = "3.0.3", default-features = false }

tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = "1.0"
sha2 = { version = "0.10.8", default-features = false }
sha2 = { version = "0.10.9", default-features = false }
ethereum-consensus = { git = "https://github.com/boundless-xyz/ethereum-consensus.git", rev = "1186e3e50bd10f00ef2caf1846ee8d62f5c8e4ef", default-features = false }
ssz_rs = { git = "https://github.com/willemolding/ssz-rs", rev = "d939604c3693aadaff63dcacf9a810d8845fafef", default-features = false }
ssz_rs = { git = "https://github.com/willemolding/ssz-rs", rev = "f9348a9c91948e69b820cd91daef28666b37133b", default-features = false }
bitvec = { version = "1", features = ["serde"] }
tracing = "0.1.41"
anyhow = "1.0.57"
Expand All @@ -47,11 +47,13 @@ tokio = { version = "1.45", features = ["full"] }

# Lighthouse crates
beacon_chain = { git = "https://github.com/sigp/lighthouse.git", rev = "9c972201bcce642a3dadaa6c98958cf6b440a4e2" }
beacon_types = { package = "types", git = "https://github.com/sigp/lighthouse.git", rev = "9c972201bcce642a3dadaa6c98958cf6b440a4e2", default-features = false, features = ["legacy-arith"] }
beacon_types = { package = "types", git = "https://github.com/sigp/lighthouse.git", rev = "9c972201bcce642a3dadaa6c98958cf6b440a4e2", default-features = false, features = [
"legacy-arith",
] }
bls = { git = "https://github.com/sigp/lighthouse.git", rev = "9c972201bcce642a3dadaa6c98958cf6b440a4e2" }
swap_or_not_shuffle = { git = "https://github.com/sigp/lighthouse.git", rev = "9c972201bcce642a3dadaa6c98958cf6b440a4e2" }
safe_arith = { git = "https://github.com/sigp/lighthouse.git", rev = "9c972201bcce642a3dadaa6c98958cf6b440a4e2" }

[patch."https://github.com/ralexstokes/ssz-rs"]
# Get the merkle tree empty node virtualization so non-trivial merkle trees actually fit in memory
ssz_rs = { git = "https://github.com/willemolding/ssz-rs", rev = "d939604c3693aadaff63dcacf9a810d8845fafef" }
ssz_rs = { git = "https://github.com/willemolding/ssz-rs", rev = "f9348a9c91948e69b820cd91daef28666b37133b" }
30 changes: 20 additions & 10 deletions methods/guest/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 methods/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ blst = { version = "0.3.14", default-features = false, features = ["no-threads"]
chainspec = { path = "../../chainspec", features = ["mainnet", "sepolia"] }
risc0-zkvm = { version = "3.0.3", features = ["std", "unstable"] }
serde_cbor = "0.11"
sha2 = "=0.10.8"
sha2 = "0.10.9"
z-core = { path = "../../core" }

[patch.crates-io]
blst = { git = "https://github.com/risc0/blst.git", branch = "wollac/clean/v0.3.15" }
crypto-bigint = { git = "https://github.com/risc0/RustCrypto-crypto-bigint", tag = "v0.5.5-risczero.0" }
sha2 = { git = "https://github.com/risc0/RustCrypto-hashes", tag = "sha2-v0.10.8-risczero.0" }
sha2 = { git = "https://github.com/risc0/RustCrypto-hashes", tag = "sha2-v0.10.9-risczero.0" }
k256 = { git = "https://github.com/risc0/RustCrypto-elliptic-curves", tag = "k256/v0.13.4-risczero.1" }
ethereum_hashing = { git = "https://github.com/boundless-xyz/ethereum_hashing", rev = "f9826065df48bab455afe6a0639d5c625ced57a2" }
c-kzg = { git = "https://github.com/risc0/c-kzg-4844", tag = "c-kzg/v2.1.1-risczero.0" }