Cargo.toml 1.02 KB
Newer Older
1
2
3
4
5
[package]
name = "polkadot-network"
version = "0.1.0"
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.7.1"
11
av_store = { package = "polkadot-availability-store", path = "../availability-store" }
12
polkadot-validation = { path = "../validation" }
13
polkadot-primitives = { path = "../primitives" }
Gavin Wood's avatar
Gavin Wood committed
14
parity-codec = { version = "4.1", 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
19
futures = "0.1"
log = "0.4"
20
exit-future = "0.1.4"
21
22

[dev-dependencies]
23
24
substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }