forked from celo-org/snark-setup
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Cargo.toml
39 lines (35 loc) · 1.59 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
[package]
name = "setup2"
version = "0.3.0"
authors = ["Georgios Konstantopoulos <[email protected]>", "The Aleo Team <[email protected]>"]
description = "Aleo Setup II"
homepage = "https://github.com/AleoHQ/aleo-setup"
repository = "https://github.com/AleoHQ/aleo-setup"
license = "GPL-3.0"
edition = "2018"
[dependencies]
phase2 = { path = "../phase2" }
setup-utils = { path = "../setup-utils" }
snarkvm-algorithms = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-dpc = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-fields = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-parameters = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-r1cs = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-utilities = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
anyhow = { version = "1.0.37" }
cfg-if = "1.0"
fs-err = { version = "2.6" }
gumdrop = { version = "0.8.0", optional = true }
hex = { version = "0.4.2" }
hex-literal = { version = "0.3.1", optional = true }
memmap = { version = "0.7.0", optional = true }
rand = { version = "0.8" }
rand_chacha = { version = "0.3" }
thiserror = { version = "1.0.22" }
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
[features]
default = ["cli"]
parallel = ["phase2/parallel", "setup-utils/parallel"]
cli = ["gumdrop", "hex-literal", "memmap", "parallel", "phase2/cli", "setup-utils/cli"]
wasm = ["phase2/wasm", "setup-utils/wasm"]