Cargo.toml 1.49 KB
Newer Older
1
2
[package]
name = "polkadot-network"
Gavin Wood's avatar
Gavin Wood committed
3
version = "0.7.19"
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
parking_lot = "0.9.0"
11
av_store = { package = "polkadot-availability-store", path = "../availability-store" }
12
polkadot-validation = { path = "../validation" }
13
polkadot-primitives = { path = "../primitives" }
14
polkadot-erasure-coding = { path = "../erasure-coding" }
15
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
16
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
17
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
18
19
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
20
futures = "0.3.1"
21
log = "0.4.8"
Gavin Wood's avatar
Gavin Wood committed
22
exit-future = "0.2.0"
23
24
sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
25
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
26
wasm-timer = "0.2.4"
27
28

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