Skip to content

Commit 25cc316

Browse files
authored
perf: Update crypto deps (#136)
# What ❔ <!-- What are the changes this PR brings about? --> <!-- Example: This PR adds a PR template to the repo. --> <!-- (For bigger PRs adding more context is appreciated) --> ## Why ❔ <!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? --> <!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`. Signed-off-by: Danil <deniallugo@gmail.com>
1 parent 20e0043 commit 25cc316

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ wrapper-prover = { version = "=0.155.7", path = "crates/wrapper-prover", package
2929

3030
# These dependencies should be shared by all the crates.
3131
# zksync-crypto repository
32-
boojum = "=0.32.8"
33-
fflonk-cpu = { package = "fflonk", version = "=0.32.8" }
34-
franklin-crypto = "=0.32.8"
35-
rescue_poseidon = "=0.32.8"
36-
snark_wrapper = "=0.32.8"
32+
boojum = "=0.32.9"
33+
fflonk-cpu = { package = "fflonk", version = "=0.32.9" }
34+
franklin-crypto = "=0.32.9"
35+
rescue_poseidon = "=0.32.9"
36+
snark_wrapper = "=0.32.9"
3737

3838
# zksync-protocol repository
39-
circuit_definitions = { version = "=0.153.7" }
40-
zkevm_test_harness = { version = "=0.153.7" }
39+
circuit_definitions = { version = "=0.153.8" }
40+
zkevm_test_harness = { version = "=0.153.8" }
4141

4242
[profile.release]
4343
debug = "line-tables-only"

crates/gpu-prover/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use super::*;
22
use bellman::pairing::{CurveAffine, GenericCurveProjective};
33
use core::ops::Range;
4-
use franklin_crypto::rand::{thread_rng, Rng};
4+
use rand::{thread_rng, Rng};
55

66
pub(crate) fn generate_scalars_to_buf<F: PrimeField>(worker: &Worker, buf: &mut [F]) {
77
assert!(buf.len().is_power_of_two());

0 commit comments

Comments
 (0)