forked from AleoNet/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (53 loc) · 1.22 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
[package]
name = "snarkos-storage"
version = "2.0.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Storage 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 = "2018"
[dependencies]
snarkvm = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "471e03b" }
#snarkvm = { path = "../../snarkVM" }
[dependencies.anyhow]
version = "1"
[dependencies.bincode]
version = "1.0"
optional = true
[dependencies.chrono]
version = "0.4"
default-features = false
features = [ "clock", "serde" ]
[dependencies.circular-queue]
version = "0.2"
[dependencies.itertools]
version = "0.10"
[dependencies.parking_lot]
version = "0.11"
[dependencies.rand]
version = "0.8"
[dependencies.rayon]
version = "1"
[dependencies.rocksdb]
version = "0.17"
optional = true
[dependencies.serde]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.2"
[features]
default = ["rocks"]
rocks = ["bincode", "rocksdb"]