-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (56 loc) · 2.27 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (56 loc) · 2.27 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
members = [
"libecvrf",
"zkmemory",
"zkrisc",
"zkdb",
"node",
"node/migration",
"wano",
"verkletree",
"poseidon",
]
exclude = []
resolver = "2"
[workspace.package]
authors = ["Chiro <chiro@orochi.network>"]
repository = "https://github.com/orochi-network/orochimaru/"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
keywords = ["risc", "zkdb", "zkp", "vrf", "mpc"]
categories = ["zkp", "cryptography", "distributed", "mpc"]
[profile.bench]
lto = "fat"
codegen-units = 1
[workspace.dependencies]
cargo-llvm-cov = "0.6.13"
ethnum = "1.5.0"
hex = "0.4.3"
rbtree = "0.2.0"
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", tag = "v0.3.0" }
halo2curves = { git = "https://github.com/privacy-scaling-explorations/halo2curves", tag = "v0.7.0" }
ff = "0.13.0"
group = "0.13.0"
rand_core = "0.6.4"
rand = "0.8.5"
serde_json = "1.0.128"
serde = "1.0.210"
nova-snark = { git = "https://github.com/microsoft/Nova", default-features = false }
bellpepper-core = { version = "0.4.0", default-features = false }
arecibo = { git = "https://github.com/argumentcomputer/arecibo" }
# Zinc+ transparent SNARK (NethermindEth). Research-grade, unaudited and not
# published on crates.io, so every crate is pinned to one reviewed revision.
zinc-protocol = { git = "https://github.com/NethermindEth/zinc-plus.git", rev = "13f540d9345d467833ac6cc095af966987c65c4a" }
zinc-uair = { git = "https://github.com/NethermindEth/zinc-plus.git", rev = "13f540d9345d467833ac6cc095af966987c65c4a" }
zinc-poly = { git = "https://github.com/NethermindEth/zinc-plus.git", rev = "13f540d9345d467833ac6cc095af966987c65c4a" }
zinc-primality = { git = "https://github.com/NethermindEth/zinc-plus.git", rev = "13f540d9345d467833ac6cc095af966987c65c4a" }
zinc-utils = { git = "https://github.com/NethermindEth/zinc-plus.git", rev = "13f540d9345d467833ac6cc095af966987c65c4a" }
zip-plus = { git = "https://github.com/NethermindEth/zinc-plus.git", rev = "13f540d9345d467833ac6cc095af966987c65c4a" }
# Exact versions used by the pinned zinc-plus revision; kept in lockstep with it.
crypto-bigint = "=0.7.0-rc.9"
crypto-primitives = { git = "https://github.com/NethermindEth/crypto-primitives.git", rev = "aa65fab", features = [
"std",
"crypto_bigint",
"rand",
] }