mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-30 01:27:26 +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>
44 lines
1.7 KiB
TOML
44 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-cli"
|
|
version = "0.7.20"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot node implementation in Rust."
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
futures = { version = "0.3.4", features = ["compat"] }
|
|
structopt = "0.3.8"
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true }
|
|
sp-api = { 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" }
|
|
sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
service = { package = "polkadot-service", path = "../service", default-features = false }
|
|
|
|
tokio = { version = "0.2.10", features = ["rt-threaded"], optional = true }
|
|
|
|
wasm-bindgen = { version = "0.2.57", optional = true }
|
|
wasm-bindgen-futures = { version = "0.4.7", optional = true }
|
|
browser-utils = { package = "browser-utils", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true }
|
|
|
|
[features]
|
|
default = [ "wasmtime", "rocksdb", "cli" ]
|
|
wasmtime = [ "sc-cli/wasmtime" ]
|
|
rocksdb = [ "service/rocksdb" ]
|
|
cli = [
|
|
"tokio",
|
|
"sc-cli",
|
|
]
|
|
browser = [
|
|
"wasm-bindgen",
|
|
"wasm-bindgen-futures",
|
|
"browser-utils",
|
|
]
|