From 7c955dd132b5b2a4e8a11d5bc33708a1cbd5bd88 Mon Sep 17 00:00:00 2001 From: Artem Fomiuk <88630083+Artemka374@users.noreply.github.com> Date: Fri, 20 Dec 2024 16:04:35 +0200 Subject: [PATCH] feat: FFLONK (#64) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What ❔ ## Why ❔ ## Checklist - [ ] 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`. --------- Co-authored-by: Robert Remen --- Cargo.toml | 14 +++++++------- crates/fflonk/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6b4c340..e06bc17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,14 +29,14 @@ fflonk = { version = "=0.152.9", path = "crates/fflonk", package = "fflonk-cuda" # These dependencies should be shared by all the crates. # zksync-crypto repository -boojum = "=0.30.11" -fflonk-cpu = {package = "fflonk", version = "=0.30.11"} -franklin-crypto = "=0.30.11" -rescue_poseidon = "=0.30.11" -snark_wrapper = "=0.30.11" +boojum = "=0.30.12" +fflonk-cpu = {package = "fflonk", version = "=0.30.12"} +franklin-crypto = "=0.30.12" +rescue_poseidon = "=0.30.12" +snark_wrapper = "=0.30.12" # zksync-protocol repository -circuit_definitions = { version = "=0.150.18" } -zkevm_test_harness = { version = "=0.150.18" } +circuit_definitions = { version = "=0.150.19" } +zkevm_test_harness = { version = "=0.150.19" } [profile.release] debug = "line-tables-only" diff --git a/crates/fflonk/Cargo.toml b/crates/fflonk/Cargo.toml index 0dcc4aa..46638b1 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 = []