Cargo.toml 1.85 KB
Newer Older
1
[package]
2
name = "polkadot-validation"
3
4
5
6
7
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.1"
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
20
21
22
23
24
25
26
27
28
29
30
substrate-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-consensus-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
srml-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-consensus-authorities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
31
32

[dev-dependencies]
33
substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }