Skip to content

Commit 38ec149

Browse files
authored
Merge branch 'main' into si/better-proof-compression
2 parents efe55ff + 0dda58b commit 38ec149

File tree

4 files changed

+35
-21
lines changed

4 files changed

+35
-21
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.152.8"
2+
".": "0.152.10"
33
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.152.10](https://github.com/matter-labs/zksync-crypto-gpu/compare/v0.152.9...v0.152.10) (2024-12-20)
4+
5+
6+
### Features
7+
8+
* FFLONK ([#64](https://github.com/matter-labs/zksync-crypto-gpu/issues/64)) ([7c955dd](https://github.com/matter-labs/zksync-crypto-gpu/commit/7c955dd132b5b2a4e8a11d5bc33708a1cbd5bd88))
9+
10+
## [0.152.9](https://github.com/matter-labs/zksync-crypto-gpu/compare/v0.152.8...v0.152.9) (2024-12-18)
11+
12+
13+
### Features
14+
15+
* Bump dependencies ([#62](https://github.com/matter-labs/zksync-crypto-gpu/issues/62)) ([f930ea5](https://github.com/matter-labs/zksync-crypto-gpu/commit/f930ea556c37570e7a33a6e71f729194897909ef))
16+
317
## [0.152.8](https://github.com/matter-labs/zksync-crypto-gpu/compare/v0.152.7...v0.152.8) (2024-11-22)
418

519

Cargo.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,32 @@ keywords = ["blockchain", "zksync"]
1111
categories = ["cryptography"]
1212
repository = "https://github.com/matter-labs/zksync-crypto-gpu"
1313
# All the packages in the workspace should have the same version
14-
version = "0.152.8"
14+
version = "0.152.10"
1515

1616
[workspace.dependencies]
1717
# Local dependencies
18-
boojum-cuda = { version = "=0.152.8", path = "crates/boojum-cuda" }
19-
era_criterion_cuda = { version = "=0.152.8", path = "crates/criterion-cuda" }
20-
era_cudart = { version = "=0.152.8", path = "crates/cudart" }
21-
era_cudart_sys = { version = "=0.152.8", path = "crates/cudart-sys" }
22-
era_cudart_sys_bindings_generator = { version = "=0.152.8", path = "crates/cudart-sys-bindings-generator" }
23-
gpu-ffi = { version = "=0.152.8", path = "crates/gpu-ffi", package = "zksync-gpu-ffi" }
24-
gpu-ffi-bindings-generator = { version = "=0.152.8", path = "crates/gpu-ffi", package = "zksync-gpu-ffi-bindings-generator" }
25-
gpu-prover = { version = "=0.152.8", path = "crates/gpu-prover", package = "zksync-gpu-prover" }
26-
shivini = { version = "=0.152.8", path = "crates/shivini" }
27-
wrapper-prover = { version = "=0.152.8", path = "crates/wrapper-prover", package = "zksync-wrapper-prover" }
28-
fflonk = { version = "=0.152.8", path = "crates/fflonk", package = "fflonk-cuda" }
18+
boojum-cuda = { version = "=0.152.10", path = "crates/boojum-cuda" }
19+
era_criterion_cuda = { version = "=0.152.10", path = "crates/criterion-cuda" }
20+
era_cudart = { version = "=0.152.10", path = "crates/cudart" }
21+
era_cudart_sys = { version = "=0.152.10", path = "crates/cudart-sys" }
22+
era_cudart_sys_bindings_generator = { version = "=0.152.10", path = "crates/cudart-sys-bindings-generator" }
23+
gpu-ffi = { version = "=0.152.10", path = "crates/gpu-ffi", package = "zksync-gpu-ffi" }
24+
gpu-ffi-bindings-generator = { version = "=0.152.10", path = "crates/gpu-ffi", package = "zksync-gpu-ffi-bindings-generator" }
25+
gpu-prover = { version = "=0.152.10", path = "crates/gpu-prover", package = "zksync-gpu-prover" }
26+
shivini = { version = "=0.152.10", path = "crates/shivini" }
27+
wrapper-prover = { version = "=0.152.10", path = "crates/wrapper-prover", package = "zksync-wrapper-prover" }
28+
fflonk = { version = "=0.152.10", path = "crates/fflonk", package = "fflonk-cuda" }
2929

3030
# These dependencies should be shared by all the crates.
3131
# zksync-crypto repository
32-
boojum = "=0.30.9"
33-
fflonk-cpu = {package = "fflonk", version = "=0.30.9"}
34-
franklin-crypto = "=0.30.9"
35-
rescue_poseidon = "=0.30.9"
36-
snark_wrapper = "=0.30.9"
32+
boojum = "=0.30.12"
33+
fflonk-cpu = {package = "fflonk", version = "=0.30.12"}
34+
franklin-crypto = "=0.30.12"
35+
rescue_poseidon = "=0.30.12"
36+
snark_wrapper = "=0.30.12"
3737
# zksync-protocol repository
38-
circuit_definitions = { version = "=0.150.16" }
39-
zkevm_test_harness = { version = "=0.150.16" }
38+
circuit_definitions = { version = "=0.150.19" }
39+
zkevm_test_harness = { version = "=0.150.19" }
4040

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

crates/fflonk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ serde_json = "1"
2424
serde_derive = "1"
2525

2626
[features]
27-
default = ["sanity"]
27+
default = []
2828
sanity = []

0 commit comments

Comments
 (0)