Cargo.toml 2.59 KB
Newer Older
1
[package]
2
name = "polkadot-validation"
Gavin Wood's avatar
Gavin Wood committed
3
version = "0.6.17"
4
authors = ["Parity Technologies <admin@parity.io>"]
5
edition = "2018"
6
7
8

[dependencies]
futures = "0.1.17"
thiolliere's avatar
thiolliere committed
9
10
futures03 = { package = "futures-preview", version = "0.3.0-alpha.18", features = ["compat"] }
futures-timer = "0.4.0"
11
parking_lot = "0.9.0"
12
tokio = "0.1.7"
13
derive_more = "0.14.0"
14
log = "0.4.6"
15
exit-future = "0.1"
16
codec = { package = "parity-scale-codec", version = "~1.0.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-runtime = { path = "../runtime" }
21
table = { package = "polkadot-statement-table", path = "../statement-table" }
22
23
24
25
26
27
grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
consensus = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
28
29
sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
30
31
trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
32
bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] }
33
34
35
runtime_babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
36
37

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