mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 09:17:58 +00:00
e818944cbe
* WIP * WIP Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca Parent branch: origin/rococo-branch * WIP Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca Parent branch: origin/rococo-branch * Apply suggestions from code review * Update collator/src/lib.rs * Update collator/src/lib.rs * Update network/src/protocol/mod.rs
35 lines
1.5 KiB
TOML
35 lines
1.5 KiB
TOML
[package]
|
|
name = "polkadot-network"
|
|
version = "0.8.22"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot-specific networking protocol"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arrayvec = "0.4.12"
|
|
bytes = "0.5"
|
|
parking_lot = "0.9.0"
|
|
derive_more = "0.14.1"
|
|
av_store = { package = "polkadot-availability-store", path = "../availability-store" }
|
|
polkadot-validation = { path = "../validation" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-erasure-coding = { path = "../erasure-coding" }
|
|
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { 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" }
|
|
futures = "0.3.5"
|
|
log = "0.4.8"
|
|
exit-future = "0.2.0"
|
|
futures-timer = "2.0"
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
wasm-timer = "0.2.4"
|
|
rand = "0.7.3"
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|