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

[dependencies]
8
9
10
11
futures = "0.1.17"
futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
futures-timer = "2.0"
async-std = { version = "1.0.1", features = ["unstable"] }
12
parking_lot = "0.9.0"
13
14
15
16
tokio = "0.1.22"
derive_more = "0.14.1"
log = "0.4.8"
exit-future = "0.1.4"
17
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
18
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
19
availability_store = { package = "polkadot-availability-store", path = "../availability-store" }
20
parachain = { package = "polkadot-parachain", path = "../parachain" }
21
polkadot-primitives = { path = "../primitives" }
22
polkadot-runtime = { path = "../runtime" }
23
table = { package = "polkadot-statement-table", path = "../statement-table" }
24
25
26
27
28
29
30
31
32
33
34
35
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" }
36
bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] }
37
38
39
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" }
40
41

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