-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (31 loc) · 1.42 KB
/
Cargo.toml
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
34
[workspace]
members = [
"crates/*"
]
resolver = "2"
[workspace.package]
# All the packages in the workspace should have the same version
version = "0.150.17"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
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.150.17", path = "crates/circuit_definitions" }
circuit_encodings = { version = "=0.150.17", path = "crates/circuit_encodings" }
circuit_sequencer_api = { version = "=0.150.17", path = "crates/circuit_sequencer_api" }
kzg = { version = "=0.150.17", path = "crates/kzg", package = "zksync_kzg" }
zk_evm = { version = "=0.150.17", path = "crates/zk_evm" }
zk_evm_abstractions = { version = "=0.150.17", path = "crates/zk_evm_abstractions" }
zkevm_circuits = { version = "=0.150.17", path = "crates/zkevm_circuits" }
zkevm_opcode_defs = { version = "=0.150.17", path = "crates/zkevm_opcode_defs" }
zkevm_test_harness = { version = "=0.150.17", path = "crates/zkevm_test_harness" }
zkevm-assembly = { version = "=0.150.17", path = "crates/zkEVM-assembly" }
# `zksync-crypto` repository
snark_wrapper = "=0.30.10"
bellman = { package = "zksync_bellman", version = "=0.30.10" }
boojum = "=0.30.10"
cs_derive = { package = "zksync_cs_derive", version = "=0.30.10" }