-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 642 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 642 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
[package]
name = "tinychain"
authors = ["Charles <cl.yang09@gmail.com>"]
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ring = "0.16.20"
data-encoding = "2.3.2"
num-bigint = "0.4.3"
sled = "0.34.7"
serde = { version = "1.0.132", features = ["derive"] }
bincode = "1.3.3"
structopt = "0.3.25"
clap = "2.34.0"
rust-crypto = "0.2.36"
bs58 = "0.4.0"
rustc-serialize = "0.3.24"
uuid = { version = "0.8.2", features = ["v4"]}
log = "0.4.14"
env_logger = "0.9.0"
serde_json = "1.0.73"
once_cell = "1.9.0"
[dev-dependencies]
assert_cmd = "0.11.0"