forked from matter-labs/zksync-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
# All the packages in the workspace should have the same version
version = "0.153.10" # x-release-please-version
edition = "2021"
authors = ["The Matter Labs Team <hello@matterlabs.dev>"]
homepage = "https://zksync.io/"
repository = "https://github.com/matter-labs/zksync-protocol/"
license = "MIT OR Apache-2.0"
keywords = ["blockchain", "zksync"]
categories = ["cryptography"]
[workspace.dependencies]
circuit_definitions = { version = "=0.153.10", path = "crates/circuit_definitions" }
circuit_encodings = { version = "=0.153.10", path = "crates/circuit_encodings" }
circuit_sequencer_api = { version = "=0.153.10", path = "crates/circuit_sequencer_api" }
kzg = { version = "=0.153.10", path = "crates/kzg", package = "zksync_kzg" }
zk_evm = { version = "=0.153.10", path = "crates/zk_evm" }
zk_evm_abstractions = { version = "=0.153.10", path = "crates/zk_evm_abstractions" }
zkevm_circuits = { version = "=0.153.10", path = "crates/zkevm_circuits" }
zkevm_opcode_defs = { version = "=0.153.10", path = "crates/zkevm_opcode_defs" }
zkevm_test_harness = { version = "=0.153.10", path = "crates/zkevm_test_harness" }
zkevm-assembly = { version = "=0.153.10", path = "crates/zkEVM-assembly" }
# `zksync-crypto` workspace dependencies
snark_wrapper = "=0.32.10"
bellman = { package = "zksync_bellman", version = "=0.32.10" }
boojum = "=0.32.10"
cs_derive = { package = "zksync_cs_derive", version = "=0.32.10" }
zksync_pairing = "=0.32.10"