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
6 changes: 3 additions & 3 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ vise = "0.2.0"
circuit_definitions = "=0.150.19"
circuit_sequencer_api = "=0.150.19"
zkevm_test_harness = "=0.150.19"
proof-compression-gpu = { package = "proof-compression", version = "=0.152.10"}
fflonk-gpu = { package = "fflonk-cuda", version = "=0.152.10"}
proof-compression-gpu = { package = "proof-compression", version = "=0.152.10" }
fflonk-gpu = { package = "fflonk-cuda", version = "=0.152.10" }
fflonk = "=0.30.12"
franklin-crypto = "=0.30.12"

# GPU proving dependencies
wrapper_prover = { package = "zksync-wrapper-prover", version = "=0.152.10"}
wrapper_prover = { package = "zksync-wrapper-prover", version = "=0.152.10" }
shivini = "=0.152.10"
boojum-cuda = "=0.152.10"

Expand Down
6 changes: 2 additions & 4 deletions prover/crates/lib/circuit_prover_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories.workspace = true
[dependencies]
zksync_prover_job_processor.workspace = true
zksync_prover_fri_types.workspace = true
zksync_prover_keystore.workspace = true
zksync_prover_keystore = { workspace = true, features = ["gpu-light"] }
zksync_prover_dal.workspace = true
zksync_types.workspace = true
zksync_object_store.workspace = true
Expand All @@ -24,8 +24,6 @@ tokio = { workspace = true, features = ["macros", "time"] }
tokio-util.workspace = true
tracing.workspace = true

shivini = { workspace = true, features = [
"circuit_definitions",
] }
shivini = { workspace = true, features = ["circuit_definitions"] }
zkevm_test_harness.workspace = true
vise.workspace = true
2 changes: 1 addition & 1 deletion prover/crates/lib/prover_job_processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories.workspace = true
async-trait.workspace = true
anyhow.workspace = true
futures.workspace = true
tokio.workspace = true
tokio = { workspace = true, features = ["rt"] }
tokio-stream.workspace = true
tokio-util.workspace = true
tracing.workspace = true
Expand Down
Loading