Skip to content

Commit

Permalink
feat: FFLONK (#64)
Browse files Browse the repository at this point in the history
# 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`.

---------

Co-authored-by: Robert Remen <[email protected]>
  • Loading branch information
Artemka374 and robik75 authored Dec 20, 2024
1 parent 80be249 commit 7c955dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion crates/fflonk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ serde_json = "1"
serde_derive = "1"

[features]
default = ["sanity"]
default = []
sanity = []

0 comments on commit 7c955dd

Please sign in to comment.