Cargo.toml 2.17 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
bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] }
13
lru = "0.6"
14
15
merlin = "2.0"
schnorrkel = "0.9.1"
16
kvdb = "0.9.0"
17
derive_more = "0.99.14"
18

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

sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
27
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
28
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
29
30
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 }
31
32
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 }
33

34
35
36
37
38
39
40
41
42
43
[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"
44
kvdb-memorydb = "0.9.0"