Skip to content

Commit c4d579b

Browse files
authored
feat: updating to most recent booju,m, and making more public (#109)
# What ❔ * Updating dependencies to the most recent ones (especially boojum ones) * making parts of the proof compression more public # Why ? Will allow us to run GPU for zkos wrapper.
1 parent 54200ea commit c4d579b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
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.154.6", path = "crates/wrapper-prover", package
2929

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

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

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

crates/proof-compression/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub use chain::*;
77
pub mod proof_system;
88
pub use proof_system::*;
99

10-
mod serialization;
10+
pub mod serialization;
1111
use serialization::*;
1212

1313
pub mod step;

crates/proof-compression/src/proof_system/crs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,6 @@ fn create_crs_from_ignition_transcript<S: AsRef<std::ffi::OsStr> + ?Sized>(
271271
Ok(new)
272272
}
273273

274-
pub(crate) fn hardcoded_canonical_g2_bases() -> [bellman::bn256::G2Affine; 2] {
274+
pub fn hardcoded_canonical_g2_bases() -> [bellman::bn256::G2Affine; 2] {
275275
::fflonk::hardcoded_g2_bases::<bellman::bn256::Bn256>()
276276
}

0 commit comments

Comments
 (0)