forked from AleoNet/snarkVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
88 lines (75 loc) · 1.37 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
[package]
name = "snarkvm"
version = "0.6.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "A decentralized virtual machine"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkVM"
keywords = [
"aleo",
"cryptography",
"blockchain",
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography::cryptocurrencies", "operating-systems" ]
include = [ "Cargo.toml", "snarkvm", "README.md", "LICENSE.md" ]
license = "GPL-3.0"
edition = "2018"
[workspace]
members = [
"algorithms",
"curves",
"derives",
"dpc",
"fields",
"gadgets",
"marlin",
"parameters",
"polycommit",
"posw",
"profiler",
"r1cs",
"utilities",
"wasm",
".integration"
]
[[bin]]
name = "snarkvm"
path = "snarkvm/main.rs"
[dependencies.anyhow]
version = "1.0.41"
[dependencies.colored]
version = "2"
[dependencies.self_update]
version = "0.27"
[dependencies.structopt]
version = "0.3"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.rusty-hook]
version = "0.11.2"
[features]
default = [ ]
noconfig = [ ]
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[profile.dev]
opt-level = 3
lto = "thin"
incremental = true
[profile.test]
opt-level = 3
lto = "thin"
incremental = true
debug = true
debug-assertions = true