forked from ProvableHQ/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (59 loc) · 1.39 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
[package]
name = "snarkos-integration"
version = "2.0.2"
authors = [ "The Aleo Team <[email protected]>" ]
description = "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"
[features]
test = [ "anyhow", "clap", "snarkos", "peak_alloc", "snarkos-metrics", "tracing-subscriber" ]
[dependencies.anyhow]
version = "1"
optional = true
[dependencies.async-trait]
version = "0.1"
[dependencies.pea2pea]
version = "0.34"
[dependencies.peak_alloc]
version = "0.1"
optional = true
[dependencies.snarkos]
path = ".."
version = "2.0.2"
optional = true
features = [ "test" ]
[dependencies.snarkos-environment]
path = "../environment"
version = "2.0.2"
[dependencies.snarkos-metrics]
path = "../metrics"
features = [ "test" ]
optional = true
[dependencies.snarkos-synthetic-node]
path = "../.synthetic_node"
version = "2.0.2"
[dependencies.snarkvm]
version = "0.8.0"
[dependencies.clap]
version = "3.1"
features = [ "derive" ]
optional = true
[dependencies.tokio]
version = "1"
features = [ "macros", "rt-multi-thread", "time" ]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [ "env-filter", "parking_lot" ]
optional = true