-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathCargo.toml
78 lines (64 loc) · 1.38 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
[package]
name = "snarkvm-fields"
version = "0.16.19"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Fields 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 = "Apache-2.0"
edition = "2021"
[[bench]]
name = "fields"
path = "benches/fields.rs"
harness = false
[dependencies.snarkvm-utilities]
path = "../utilities"
version = "=0.16.19"
default-features = false
[dependencies.aleo-std]
version = "0.1.24"
default-features = false
[dependencies.anyhow]
version = "1.0"
[dependencies.itertools]
version = "0.11.0"
[dependencies.num-traits]
version = "0.2"
[dependencies.rand]
version = "0.8"
default-features = false
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1.0"
default-features = false
features = [ "derive" ]
[dependencies.thiserror]
version = "1.0"
[dependencies.zeroize]
version = "1"
features = [ "derive" ]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.snarkvm-curves]
path = "../curves"
default-features = false
[features]
default = [ "snarkvm-utilities/default" ]
profiler = [ "aleo-std/profiler" ]
serial = [ ]