Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Rename vk_setup to zksync_vk_setup #2767

Merged
merged 1 commit into from
Aug 29, 2024
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
72 changes: 36 additions & 36 deletions prover/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ zksync_periodic_job = { path = "../core/lib/periodic_job" }
zksync_prover_dal = { path = "crates/lib/prover_dal" }
zksync_prover_fri_types = { path = "crates/lib/prover_fri_types" }
zksync_prover_fri_utils = { path = "crates/lib/prover_fri_utils" }
vk_setup_data_generator_server_fri = { path = "crates/bin/vk_setup_data_generator_server_fri" }
zksync_vk_setup_data_generator_server_fri = { path = "crates/bin/vk_setup_data_generator_server_fri" }

# for `perf` profiling
[profile.perf]
Expand Down
2 changes: 1 addition & 1 deletion prover/crates/bin/proof_fri_compressor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ zksync_utils.workspace = true
zksync_core_leftovers.workspace = true
zksync_prover_fri_types.workspace = true
zksync_queued_job_processor.workspace = true
vk_setup_data_generator_server_fri.workspace = true
zksync_vk_setup_data_generator_server_fri.workspace = true
zksync_vlog.workspace = true

circuit_sequencer_api.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions prover/crates/bin/prover_fri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ zksync_prover_fri_utils.workspace = true
zksync_core_leftovers.workspace = true
zksync_prover_fri_types.workspace = true
zksync_utils.workspace = true
vk_setup_data_generator_server_fri.workspace = true
zksync_vk_setup_data_generator_server_fri.workspace = true
shivini = { workspace = true, optional = true, features = [
"circuit_definitions",
"zksync",
] }

zkevm_test_harness.workspace = true
circuit_definitions = { workspace = true, features = [ "log_tracing" ] }
circuit_definitions = { workspace = true, features = ["log_tracing"] }

anyhow.workspace = true
tracing.workspace = true
Expand All @@ -45,4 +45,4 @@ clap = { workspace = true, features = ["derive"] }

[features]
default = []
gpu = ["shivini", "vk_setup_data_generator_server_fri/gpu"]
gpu = ["shivini", "zksync_vk_setup_data_generator_server_fri/gpu"]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "vk_setup_data_generator_server_fri"
name = "zksync_vk_setup_data_generator_server_fri"
version.workspace = true
edition.workspace = true
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion prover/crates/bin/witness_generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ zksync_multivm.workspace = true
zksync_object_store.workspace = true
zksync_types.workspace = true
zksync_utils.workspace = true
vk_setup_data_generator_server_fri.workspace = true
zksync_vk_setup_data_generator_server_fri.workspace = true
zksync_prover_fri_types.workspace = true
zksync_prover_fri_utils.workspace = true
zksync_core_leftovers.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion prover/crates/bin/witness_vector_generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ zksync_prover_fri_types.workspace = true
zksync_core_leftovers.workspace = true
zksync_queued_job_processor.workspace = true
zksync_vlog.workspace = true
vk_setup_data_generator_server_fri.workspace = true
zksync_vk_setup_data_generator_server_fri.workspace = true

anyhow.workspace = true
tracing.workspace = true
Expand Down
Loading