forked from sileneundula/CiderStorage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (28 loc) · 663 Bytes
/
Cargo.toml
File metadata and controls
44 lines (28 loc) · 663 Bytes
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
[package]
name = "CiderStorage"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = ["serde", "rustc-serialize"] }
serde = { version = "1.0", features = ["derive"] }
base32 = "0.5.1"
filebuffer = "0.4.0"
paranoid-hash = "0.3.0"
blake3 = "1.0.0"
dirs = "4.0.0"
hex = "0.4.3"
log = "0.4.14"
env_logger = "0.9.0"
# Base58
base58 = "0.2.0"
base64 = "0.22.1"
# PoW
blake2b-pow = "0.1.1"
# Cryptography
libslug = "0.2.0"
# Consensus
proof-of-history = "0.1.0"
poh-yugen = "0.1.0"
sha2 = "0.10.8"
securerand-rs = "0.2.0"