Cargo.toml 1.08 KB
Newer Older
1
2
3
4
5
6
7
8
[package]
name = "polkadot-consensus"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]

[dependencies]
futures = "0.1.17"
parking_lot = "0.4"
9
tokio-core = "0.1.12"
10
ed25519 = { path = "../../substrate/ed25519" }
Tomasz Drwięga's avatar
Tomasz Drwięga committed
11
error-chain = "0.12"
12
log = "0.3"
13
exit-future = "0.1"
14
15
polkadot-api = { path = "../api" }
polkadot-collator = { path = "../collator" }
16
polkadot-parachain = { path = "../parachain" }
17
polkadot-primitives = { path = "../primitives" }
18
polkadot-runtime = { path = "../runtime" }
19
polkadot-statement-table = { path = "../statement-table" }
20
polkadot-transaction-pool = { path = "../transaction-pool" }
21
22
23
substrate-bft = { path = "../../substrate/bft" }
substrate-codec = { path = "../../substrate/codec" }
substrate-primitives = { path = "../../substrate/primitives" }
Gav Wood's avatar
Gav Wood committed
24
substrate-runtime-support = { path = "../../substrate/runtime-support" }
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
25
26
27
substrate-network = { path = "../../substrate/network" }
substrate-keyring = { path = "../../substrate/keyring" }
substrate-client = { path = "../../substrate/client" }
Gav Wood's avatar
Gav Wood committed
28
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }