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
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ wrapper-prover = { version = "=0.154.6", path = "crates/wrapper-prover", package

# These dependencies should be shared by all the crates.
# zksync-crypto repository
boojum = "=0.32.1"
fflonk-cpu = {package = "fflonk", version = "=0.32.1"}
franklin-crypto = "=0.32.1"
rescue_poseidon = "=0.32.1"
snark_wrapper = "=0.32.1"
boojum = "=0.32.2"
fflonk-cpu = {package = "fflonk", version = "=0.32.2"}
franklin-crypto = "=0.32.2"
rescue_poseidon = "=0.32.2"
snark_wrapper = "=0.32.2"

# zksync-protocol repository
circuit_definitions = { version = "=0.152.4" }
zkevm_test_harness = { version = "=0.152.4" }
circuit_definitions = { version = "=0.152.5" }
zkevm_test_harness = { version = "=0.152.5" }

[profile.release]
debug = "line-tables-only"
2 changes: 1 addition & 1 deletion crates/proof-compression/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub use chain::*;
pub mod proof_system;
pub use proof_system::*;

mod serialization;
pub mod serialization;
use serialization::*;

pub mod step;
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-compression/src/proof_system/crs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,6 @@ fn create_crs_from_ignition_transcript<S: AsRef<std::ffi::OsStr> + ?Sized>(
Ok(new)
}

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