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
41 changes: 23 additions & 18 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ members = [
"core/lib/vlog",
"core/lib/multivm",
"core/lib/vm_interface",
"core/lib/vm_utils",
"core/lib/vm_executor",
"core/lib/web3_decl",
"core/lib/snapshots_applier",
"core/lib/crypto_primitives",
Expand Down Expand Up @@ -236,7 +236,7 @@ zksync_multivm = { version = "0.1.0", path = "core/lib/multivm" }
zksync_prover_dal = { version = "0.1.0", path = "prover/crates/lib/prover_dal" }
zksync_vlog = { version = "0.1.0", path = "core/lib/vlog" }
zksync_vm_interface = { version = "0.1.0", path = "core/lib/vm_interface" }
zksync_vm_utils = { version = "0.1.0", path = "core/lib/vm_utils" }
zksync_vm_executor = { version = "0.1.0", path = "core/lib/vm_executor" }
zksync_basic_types = { version = "0.1.0", path = "core/lib/basic_types" }
zksync_circuit_breaker = { version = "0.1.0", path = "core/lib/circuit_breaker" }
zksync_config = { version = "0.1.0", path = "core/lib/config" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zksync_vm_utils"
description = "ZKsync VM utilities"
name = "zksync_vm_executor"
description = "Implementations of ZKsync VM executors"
version.workspace = true
edition.workspace = true
authors.workspace = true
Expand All @@ -14,8 +14,11 @@ categories.workspace = true
zksync_contracts.workspace = true
zksync_dal.workspace = true
zksync_types.workspace = true
zksync_vm_interface.workspace = true
zksync_multivm.workspace = true

async-trait.workspace = true
once_cell.workspace = true
tokio.workspace = true
anyhow.workspace = true
tracing.workspace = true
vise.workspace = true
Loading
Loading