Skip to content

Commit

Permalink
chore: Rename vk_setup to zksync_vk_setup (#2767)
Browse files Browse the repository at this point in the history
It's inconsistent with the rest of the repository. This is a small
tidying, only structural changes, no functionality involved.
  • Loading branch information
EmilLuta committed Aug 29, 2024
1 parent 3060381 commit 3757746
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 44 deletions.
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

0 comments on commit 3757746

Please sign in to comment.