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

[dependencies]
futures = "0.1.17"
8
parking_lot = "0.7.1"
9
tokio = "0.1.7"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
10
error-chain = "0.12"
11
log = "0.4.6"
12
exit-future = "0.1"
13
parity-codec = "3.0"
14
polkadot-availability-store = { path = "../availability-store" }
15
polkadot-parachain = { path = "../parachain" }
16
polkadot-primitives = { path = "../primitives" }
17
polkadot-runtime = { path = "../runtime" }
18
polkadot-statement-table = { path = "../statement-table" }
19
substrate-consensus-aura = { git = "https://github.com/paritytech/substrate" }
20
21
substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate" }
substrate-consensus-common = { git = "https://github.com/paritytech/substrate" }
22
substrate-primitives = { git = "https://github.com/paritytech/substrate" }
23
substrate-inherents = { git = "https://github.com/paritytech/substrate" }
24
substrate-transaction-pool = { git = "https://github.com/paritytech/substrate" }
25
srml-aura = { git = "https://github.com/paritytech/substrate" }
26
substrate-client = { git = "https://github.com/paritytech/substrate" }
27
substrate-trie = { git = "https://github.com/paritytech/substrate" }
28
sr-primitives = { git = "https://github.com/paritytech/substrate" }
29
30

[dev-dependencies]
31
substrate-keyring = { git = "https://github.com/paritytech/substrate" }