mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-23 06:11:07 +00:00
703ac8bbbc
* Amalgamate pieces of balance module * Fixes for vesting split * Refactoring for vesting/balances split * Build fixes * Remove on_free_balance_zero and some docs. * Indentation. * Revert branch * Fix. * Update substrate: fixes after CLI refactoring * Reverting removal of exit * Removed too much again * Update Cargo.lock * Cargo.lock * Update Substrate, ready for #4820 * Fixes * Update to latest substrate master * Fix network tests * Update lock * Fix tests * Update futures to get bug fixes * Fix tests for new balances/vesting logic * Cargo fix * Another fix Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com> Co-authored-by: Robert Habermeier <rphmeier@gmail.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
31 lines
1.5 KiB
TOML
31 lines
1.5 KiB
TOML
[package]
|
|
name = "polkadot-network"
|
|
version = "0.7.20"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot-specific networking protocol"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arrayvec = "0.4.12"
|
|
parking_lot = "0.9.0"
|
|
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.1.0", default-features = false, features = ["derive"] }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
futures = "0.3.4"
|
|
log = "0.4.8"
|
|
exit-future = "0.2.0"
|
|
sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
wasm-timer = "0.2.4"
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|