forked from AleoNet/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (71 loc) · 1.48 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
[package]
name = "snarkos-network"
version = "2.0.2"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Node server 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.bincode]
version = "1.0"
[dependencies.bytes]
version = "1.0.0"
[dependencies.circular-queue]
version = "0.2"
[dependencies.futures]
version = "0.3.21"
features = [ "thread-pool" ]
[dependencies.once_cell]
version = "1"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
[dependencies.snarkos-environment]
path = "../environment"
version = "2.0.2"
features = [ "network" ]
[dependencies.snarkos-metrics]
path = "../metrics"
version = "2.0.2"
optional = true
[dependencies.snarkos-storage]
path = "../storage"
version = "2.0.2"
[dependencies.snarkvm]
version = "0.8.0"
[dependencies.time]
version = "0.3.7"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time"
]
[dependencies.tokio-util]
version = "0.7"
features = [ "codec" ]
[dependencies.tokio-stream]
version = "=0.1"
[dependencies.tracing]
version = "0.1"
[features]
default = [ ]
prometheus = [ "snarkos-metrics/prometheus" ]
test = [ "snarkos-metrics/test" ]