-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 728 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (25 loc) · 728 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 = "blockchain-demo"
version = "0.1.0"
authors = ["yunwei37 <1067852565@qq.com>"]
description = "A simplified blockchain implementation in rust for leaning"
edition = "2018"
readme = "README.md"
homepage = "https://github.com/yunwei37/blockchain-rust"
repository = "https://github.com/yunwei37/blockchain-rust"
license = "MIT"
keywords = ["blockchain", "demo"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sha2 = "0.9"
rust-crypto = "^0.2"
bincode = "1.3"
failure = "0.1"
sled = "0.34"
serde = {version ="1.0", features =["derive"]}
log = "0.4"
env_logger = "0.7.1"
clap = "~2.33"
bitcoincash-addr = "0.5.2"
rand = "0.4.6"
merkle-cbt = "0.2.2"