From 213a5c17fb063459a7edf6da293a3f8b9338391a Mon Sep 17 00:00:00 2001 From: Robert Remen Date: Fri, 22 Nov 2024 06:50:28 +0000 Subject: [PATCH 1/2] set dependencies --- Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4127f86..71e98ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,14 +29,14 @@ fflonk = { version = "=0.152.7", path = "crates/fflonk", package = "fflonk-cuda" # These dependencies should be shared by all the crates. # zksync-crypto repository -boojum = "=0.30.9" -fflonk-cpu = {package = "fflonk", version = "=0.30.9"} -franklin-crypto = "=0.30.9" -rescue_poseidon = "=0.30.9" -snark_wrapper = "=0.30.9" +boojum = { git = "https://github.com/matter-labs/zksync-crypto", branch = "fflonk", package = "boojum" } +fflonk-cpu = {git = "https://github.com/matter-labs/zksync-crypto", branch = "fflonk", package = "fflonk"} +franklin-crypto = { git = "https://github.com/matter-labs/zksync-crypto", branch = "fflonk", package = "franklin-crypto" } +rescue_poseidon = { git = "https://github.com/matter-labs/zksync-crypto", branch = "fflonk", package = "rescue_poseidon" } +snark_wrapper = { git = "https://github.com/matter-labs/zksync-crypto", branch = "fflonk", package = "snark_wrapper" } # zksync-protocol repository -circuit_definitions = { version = "=0.150.16" } -zkevm_test_harness = { version = "=0.150.16" } +circuit_definitions = { git = "https://github.com/matter-labs/zksync-protocol", branch = "fflonk", package = "circuit_definitions" } +zkevm_test_harness = { git = "https://github.com/matter-labs/zksync-protocol", branch = "fflonk", package = "zkevm_test_harness" } [profile.release] debug = "line-tables-only" From f69ea05c9de3886508a17f53025e01d3dc4f5b18 Mon Sep 17 00:00:00 2001 From: Lech <88630083+Artemka374@users.noreply.github.com> Date: Wed, 27 Nov 2024 16:01:17 +0200 Subject: [PATCH 2/2] make sanity non-default feature --- crates/fflonk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fflonk/Cargo.toml b/crates/fflonk/Cargo.toml index 723ddec..46233bc 100644 --- a/crates/fflonk/Cargo.toml +++ b/crates/fflonk/Cargo.toml @@ -24,5 +24,5 @@ serde_json = "1" serde_derive = "1" [features] -default = ["sanity"] +default = [] sanity = [] \ No newline at end of file