mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 10:31:03 +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>
18 lines
814 B
TOML
18 lines
814 B
TOML
[package]
|
|
name = "adder-collator"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
adder = { path = ".." }
|
|
parachain = { package = "polkadot-parachain", path = "../../../parachain" }
|
|
collator = { package = "polkadot-collator", path = "../../../collator" }
|
|
primitives = { package = "polkadot-primitives", path = "../../../primitives" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
parking_lot = "0.10.0"
|
|
codec = { package = "parity-scale-codec", version = "1.1.0" }
|
|
futures = "0.3.4"
|