forked from matter-labs/zksync-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (38 loc) · 1.44 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
35
36
37
38
39
40
41
42
[workspace]
members = [
"crates/*"
]
resolver = "2"
[workspace.package]
# All the packages in the workspace should have the same version
version = "0.30.6"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
repository = "https://github.com/matter-labs/zksync-crypto/"
license = "MIT OR Apache-2.0"
keywords = ["blockchain", "zksync"]
categories = ["cryptography"]
[workspace.dependencies]
# Local dependencies
bellman = { version = "=0.30.6", path = "crates/bellman", package = "zksync_bellman" }
boojum = { version = "=0.30.6", path = "crates/boojum" }
zksync_solidity_vk_codegen = { version = "=0.30.6", path = "crates/codegen" }
codegen-bin = { version = "=0.30.6", path = "crates/codegen-bin" }
cs_derive = { version = "=0.30.6", path = "crates/cs_derive", package = "zksync_cs_derive" }
ff = { version = "=0.30.6", path = "crates/ff", package = "zksync_ff" }
ff_derive = { version = "=0.30.6", path = "crates/ff_derive", package = "zksync_ff_derive" }
franklin-crypto = { version = "=0.30.6", path = "crates/franklin-crypto" }
pairing = { version = "=0.30.6", path = "crates/pairing", package = "zksync_pairing" }
rescue_poseidon = { version = "=0.30.6", path = "crates/rescue-poseidon" }
snark_wrapper = { version = "=0.30.6", path = "crates/snark-wrapper" }
[profile.release]
debug = true
codegen-units = 1
lto = "fat"
opt-level = 3
[profile.bench]
debug = false
codegen-units = 1
lto = "fat"
opt-level = 3