Skip to content

Commit

Permalink
chore: temporary return to path cross-workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Jan 23, 2025
1 parent 4073f81 commit f0f6220
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
34 changes: 17 additions & 17 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,23 +82,23 @@ shivini = "=0.152.10"
boojum-cuda = "=0.152.10"

# Core workspace dependencies
zksync_multivm = { version = "=26.1.0-non-semver-compat", path = "../core/lib/multivm" }
zksync_vlog = { version = "=26.1.0-non-semver-compat", path = "../core/lib/vlog" }
zksync_basic_types = { version = "=26.1.0-non-semver-compat", path = "../core/lib/basic_types" }
zksync_config = { version = "=26.1.0-non-semver-compat", path = "../core/lib/config" }
zksync_dal = { version = "=26.1.0-non-semver-compat", path = "../core/lib/dal" }
zksync_db_connection = { version = "=26.1.0-non-semver-compat", path = "../core/lib/db_connection" }
zksync_env_config = { version = "=26.1.0-non-semver-compat", path = "../core/lib/env_config" }
zksync_object_store = { version = "=26.1.0-non-semver-compat", path = "../core/lib/object_store" }
zksync_prover_interface = { version = "=26.1.0-non-semver-compat", path = "../core/lib/prover_interface" }
zksync_queued_job_processor = { version = "=26.1.0-non-semver-compat", path = "../core/lib/queued_job_processor" }
zksync_system_constants = { version = "=26.1.0-non-semver-compat", path = "../core/lib/constants" }
zksync_types = { version = "=26.1.0-non-semver-compat", path = "../core/lib/types" }
zksync_utils = { version = "=26.1.0-non-semver-compat", path = "../core/lib/utils" }
zksync_eth_client = { version = "=26.1.0-non-semver-compat", path = "../core/lib/eth_client" }
zksync_contracts = { version = "=26.1.0-non-semver-compat", path = "../core/lib/contracts" }
zksync_core_leftovers = { version = "=26.1.0-non-semver-compat", path = "../core/lib/zksync_core_leftovers" }
zksync_protobuf_config = { version = "=26.1.0-non-semver-compat", path = "../core/lib/protobuf_config" }
zksync_multivm = { path = "../core/lib/multivm" }
zksync_vlog = { path = "../core/lib/vlog" }
zksync_basic_types = { path = "../core/lib/basic_types" }
zksync_config = { path = "../core/lib/config" }
zksync_dal = { path = "../core/lib/dal" }
zksync_db_connection = { path = "../core/lib/db_connection" }
zksync_env_config = { path = "../core/lib/env_config" }
zksync_object_store = { path = "../core/lib/object_store" }
zksync_prover_interface = { path = "../core/lib/prover_interface" }
zksync_queued_job_processor = { path = "../core/lib/queued_job_processor" }
zksync_system_constants = { path = "../core/lib/constants" }
zksync_types = { path = "../core/lib/types" }
zksync_utils = { path = "../core/lib/utils" }
zksync_eth_client = { path = "../core/lib/eth_client" }
zksync_contracts = { path = "../core/lib/contracts" }
zksync_core_leftovers = { path = "../core/lib/zksync_core_leftovers" }
zksync_protobuf_config = { path = "../core/lib/protobuf_config" }

# Prover workspace dependencies
zksync_prover_dal = { version = "17.1.1", path = "crates/lib/prover_dal" }
Expand Down
16 changes: 8 additions & 8 deletions zkstack_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ zkstack_cli_types = { version = "0.1.2", path = "crates/types" }
zkstack_cli_git_version_macro = { version = "0.1.2", path = "crates/git_version_macro" }

# ZkSync deps
zksync_config = { version = "=26.1.0-non-semver-compat", path = "../core/lib/config" }
zksync_protobuf_config = { version = "=26.1.0-non-semver-compat", path = "../core/lib/protobuf_config" }
zksync_basic_types = { version = "=26.1.0-non-semver-compat", path = "../core/lib/basic_types" }
zksync_system_constants = { version = "=26.1.0-non-semver-compat", path = "../core/lib/constants" }
zksync_types = { version = "=26.1.0-non-semver-compat", path = "../core/lib/types" }
zksync_web3_decl = { version = "=26.1.0-non-semver-compat", path = "../core/lib/web3_decl" }
zksync_eth_client = { version = "=26.1.0-non-semver-compat", path = "../core/lib/eth_client" }
zksync_contracts = { version = "=26.1.0-non-semver-compat", path = "../core/lib/contracts" }
zksync_config = { path = "../core/lib/config" }
zksync_protobuf_config = { path = "../core/lib/protobuf_config" }
zksync_basic_types = { path = "../core/lib/basic_types" }
zksync_system_constants = { path = "../core/lib/constants" }
zksync_types = { path = "../core/lib/types" }
zksync_web3_decl = { path = "../core/lib/web3_decl" }
zksync_eth_client = { path = "../core/lib/eth_client" }
zksync_contracts = { path = "../core/lib/contracts" }
zksync_consensus_roles = "=0.8.0"
zksync_consensus_crypto = "=0.8.0"
zksync_consensus_utils = "=0.8.0"
Expand Down

0 comments on commit f0f6220

Please sign in to comment.