Cargo.toml 2.76 KB
Newer Older
1
[package]
2
name = "polkadot-validation"
3
version = "0.7.9"
4
authors = ["Parity Technologies <admin@parity.io>"]
5
edition = "2018"
6
7

[dependencies]
8
futures = "0.3.1"
9
futures-timer = "2.0"
10
parking_lot = "0.9.0"
11
tokio = { version = "0.2.4", features = ["rt-core", "blocking"] }
12
13
derive_more = "0.14.1"
log = "0.4.8"
Gavin Wood's avatar
Gavin Wood committed
14
exit-future = "0.2.0"
15
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
16
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
17
availability_store = { package = "polkadot-availability-store", path = "../availability-store" }
18
parachain = { package = "polkadot-parachain", path = "../parachain" }
19
polkadot-primitives = { path = "../primitives" }
20
polkadot-erasure-coding = { path = "../erasure-coding" }
21
polkadot-runtime = { path = "../runtime" }
22
table = { package = "polkadot-statement-table", path = "../statement-table" }
23
24
25
26
27
28
29
30
31
32
33
34
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
consensus = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
txpool-api = { package = "sp-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
block-builder = { package = "sc-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
35
bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] }
36
37
38
runtime_babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
39
40

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