forked from AleoNet/snarkVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
123 lines (95 loc) · 2.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[package]
name = "snarkvm-parameters"
version = "0.10.3"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Parameters for a decentralized virtual machine"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkVM"
keywords = [
"aleo",
"cryptography",
"blockchain",
"decentralized",
"zero-knowledge"
]
categories = [
"compilers",
"cryptography",
"mathematics",
"wasm",
"web-programming"
]
include = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
license = "GPL-3.0"
edition = "2021"
[dependencies.snarkvm-curves]
path = "../curves"
version = "0.10.3"
default-features = false
[dependencies.snarkvm-utilities]
path = "../utilities"
version = "0.10.3"
[dependencies.aleo-std]
version = "0.1.15"
default-features = false
features = [ "storage" ]
[dependencies.anyhow]
version = "1"
[dependencies.bincode]
version = "1"
[dependencies.cfg-if]
version = "1.0"
[dependencies.colored]
version = "2"
optional = true
[dependencies.hex]
version = "0.4.3"
[dependencies.indexmap]
version = "1.9"
[dependencies.itertools]
version = "0.10.3"
[dependencies.lazy_static]
version = "1.4"
[dependencies.parking_lot]
version = "0.12"
[dependencies.paste]
version = "1"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.11"
optional = true
[dependencies.serde_json]
version = "1"
features = [ "preserve_order" ]
[dependencies.sha2]
version = "0.10"
default-features = false
[dependencies.thiserror]
version = "1.0"
[dependencies.wasm-bindgen-futures]
version = "0.4"
optional = true
[target."cfg(not(target_family = \"wasm\"))".dependencies.curl]
version = "0.4.43"
optional = true
[dev-dependencies.snarkvm-algorithms]
path = "../algorithms"
default-features = false
[dev-dependencies.snarkvm-circuit]
path = "../circuit"
[dev-dependencies.snarkvm-console]
path = "../console"
[dev-dependencies.snarkvm-synthesizer]
path = "../synthesizer"
[dev-dependencies.curl]
version = "0.4.34"
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.rand]
version = "0.8"
[features]
default = [ "colored", "remote" ]
no_std_out = [ ]
remote = [ "curl" ]
wasm = [ "reqwest", "wasm-bindgen-futures" ]