forked from AleoNet/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (44 loc) · 1.04 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
[package]
name = "snarkos-environment"
version = "2.0.2"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Environment for a decentralized operating system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
keywords = [
"aleo",
"cryptography",
"blockchain",
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
license = "GPL-3.0"
edition = "2021"
[dependencies.anyhow]
version = "1"
[dependencies.num_cpus]
version = "1"
[dependencies.once_cell]
version = "1"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1.0.145"
[dependencies.serde_json]
version = "1"
[dependencies.snarkvm]
#path = "../../snarkVM"
git = "https://github.com/AleoHQ/snarkVM.git"
rev = "1f0f2c9"
features = ["console", "utilities"]
[dependencies.tokio]
version = "1"
features = ["sync", "rt", "time"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = ["macros", "rt-multi-thread", "time"]