mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
Staking Miner (#3141)
Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com> Co-authored-by: Peter Goodspeed-Niklaus <peter.r.goodspeedniklaus@gmail.com>
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
[package]
|
||||
name = "staking-miner"
|
||||
version = "0.9.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
tokio = { version = "0.2", features = ["macros"] }
|
||||
log = "0.4.11"
|
||||
env_logger = "0.8.3"
|
||||
structopt = "0.3.0"
|
||||
jsonrpsee-ws-client = { version = "0.2.0", default-features = false, features = ["tokio02"] }
|
||||
jsonrpsee-types = { version = "0.2.0" }
|
||||
jsonrpsee = "=0.2.0-alpha.6"
|
||||
serde_json = "1.0"
|
||||
serde = "1.0.0"
|
||||
hex = "0.4.0"
|
||||
lazy_static = "1.4.0"
|
||||
paste = "1.0.5"
|
||||
thiserror = "1.0.0"
|
||||
|
||||
remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
|
||||
sp-core = { 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" }
|
||||
sp-transaction-pool = { 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-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" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
Reference in New Issue
Block a user