Skip to content

Commit

Permalink
Fix hash acceleration for demo-rollup benchmarks (#1278)
Browse files Browse the repository at this point in the history
* Fix ed25519 version

* Comment
  • Loading branch information
theochap authored Jan 4, 2024
1 parent 8faf706 commit 617926c
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 43 deletions.
9 changes: 4 additions & 5 deletions Cargo.lock

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

37 changes: 18 additions & 19 deletions examples/demo-rollup/provers/risc0/guest-celestia/Cargo.lock

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

41 changes: 23 additions & 18 deletions examples/demo-rollup/provers/risc0/guest-mock/Cargo.lock

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

3 changes: 2 additions & 1 deletion module-system/sov-modules-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ hex = { workspace = true }
clap = { workspace = true, optional = true }
schemars = { workspace = true, optional = true, features = [] }

ed25519-dalek = { version = "2.0.0", default-features = false, features = ["serde"] }
# The risc0 patch only applies to version 2.0.0 exactly.
ed25519-dalek = { version = "=2.0.0", default-features = false, features = ["serde"] }
rand = { workspace = true, optional = true }

sov-zk-cycle-macros = { path = "../../utils/zk-cycle-macros", version = "0.3", optional = true }
Expand Down

0 comments on commit 617926c

Please sign in to comment.