mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
b048be06fe
* WIP * Dry run cmd working * Monitor cmd works * Configure balance with parameter type * Comments * cleannnn * Add balancing to PhragMMS * Move OffchainRanomBalancing to common * DRY mine_unchecked over config.solver * FMT * Apply suggestions from code review Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Improve docs for any_runtime_unit! * Some cleanup * fmt * Correct capitilaztion * Improve version mismatch log * Revert "Improve version mismatch log" This reverts commit 57570403f654f1efa4307956cda2de6f0c64f70a. * Apply suggestions from code review Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Remove Balancing struct and use Balancing Parameter type instead * update Substrate Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: parity-processbot <>
48 lines
2.2 KiB
TOML
48 lines
2.2 KiB
TOML
[package]
|
|
name = "staking-miner"
|
|
version = "0.9.9"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
tokio = { version = "1.11", features = ["macros"] }
|
|
log = "0.4.11"
|
|
env_logger = "0.9.0"
|
|
structopt = "0.3.23"
|
|
jsonrpsee-ws-client = { version = "0.3.0", default-features = false, features = ["tokio1"] }
|
|
serde_json = "1.0"
|
|
serde = "1.0.130"
|
|
paste = "1.0.5"
|
|
thiserror = "1.0.26"
|
|
|
|
remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" }
|
|
|
|
runtime-common = { package = "polkadot-runtime-common", path = "../../runtime/common" }
|
|
polkadot-runtime = { path = "../../runtime/polkadot" }
|
|
kusama-runtime = { path = "../../runtime/kusama" }
|
|
westend-runtime = { path = "../../runtime/westend" }
|
|
|
|
sub-tokens = { git = "https://github.com/paritytech/substrate-debug-kit", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" }
|