Cargo.toml 2.16 KB
Newer Older
1
2
3
4
5
6
7
[package]
name = "polkadot-node-core-approval-voting"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
8
futures = "0.3.15"
9
futures-timer = "3.0.2"
10
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["bit-vec", "derive"] }
11
tracing = "0.1.26"
12
13
14
bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] }
merlin = "2.0"
schnorrkel = "0.9.1"
15
kvdb = "0.9.0"
16
derive_more = "0.99.14"
17

18
19
polkadot-node-subsystem = { path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
20
21
22
polkadot-overseer = { path = "../../overseer" }
polkadot-primitives = { path = "../../../primitives" }
polkadot-node-primitives = { path = "../../primitives" }
23
polkadot-node-jaeger = { path = "../../jaeger" }
24
25

sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
26
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
27
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
28
29
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
30
31
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
32

33
34
35
36
37
38
39
40
41
42
[dev-dependencies]
parking_lot = "0.11.1"
rand_core = "0.5.1" # should match schnorrkel
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
maplit = "1.0.2"
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
assert_matches = "1.4.0"
43
kvdb-memorydb = "0.9.0"