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

[dependencies]
9
arrayvec = "0.4"
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
codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] }
15
16
17
substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
18
futures = "0.1"
19
futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] }
20
log = "0.4"
21
exit-future = "0.1.4"
22
substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
23
24

[dev-dependencies]
25
substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
26
sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }