Cargo.toml 1.41 KB
Newer Older
1
2
[package]
name = "polkadot-network"
3
version = "0.8.14"
4
5
authors = ["Parity Technologies <admin@parity.io>"]
description = "Polkadot-specific networking protocol"
6
edition = "2018"
7
8

[dependencies]
9
arrayvec = "0.4.12"
10
bytes = "0.5"
11
parking_lot = "0.9.0"
12
derive_more = "0.14.1"
13
av_store = { package = "polkadot-availability-store", path = "../availability-store" }
14
polkadot-validation = { path = "../validation" }
15
polkadot-primitives = { path = "../primitives" }
16
polkadot-erasure-coding = { path = "../erasure-coding" }
17
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
18
19
20
21
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
Gavin Wood's avatar
Gavin Wood committed
22
futures = "0.3.4"
23
log = "0.4.8"
Gavin Wood's avatar
Gavin Wood committed
24
exit-future = "0.2.0"
25
futures-timer = "2.0"
26
27
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
Gavin Wood's avatar
Gavin Wood committed
28
wasm-timer = "0.2.4"
29
rand = "0.7.3"
30
31

[dev-dependencies]
32
33
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }