forked from nervosnetwork/muta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.05 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
[package]
name = "muta-chain"
version = "0.1.0"
authors = ["Muta Dev <[email protected]>"]
edition = "2018"
[dependencies]
common-logger = { path = "./common/logger" }
common-config-parser = { path = "./common/config-parser" }
common-crypto = { path = "./common/crypto" }
protocol = { path = "./protocol" }
core-api = { path = "./core/api" }
core-storage = { path = "./core/storage" }
core-mempool = { path = "./core/mempool" }
core-network = { path = "./core/network" }
core-consensus = { path = "./core/consensus" }
core-executor = { path = "./core/executor" }
parking_lot = "0.9"
runtime = "0.3.0-alpha.7"
runtime-tokio = "0.3.0-alpha.6"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
log = "0.4"
clap = "2.33"
bytes = "0.4"
hex = "0.3"
rlp = "0.4"
[workspace]
members = [
"devtools/keypair",
"common/channel",
"common/config-parser",
"common/crypto",
"common/logger",
"common/merkle",
"common/metrics",
"common/pubsub",
"core/api",
"core/consensus",
"core/executor",
"core/mempool",
"core/network",
"core/storage",
"protocol",
]