mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
1abddc2efe
These crates should not be pushed. See: https://forum.parity.io/t/renaming-squated-crates-in-substrate-polkadot-cumulus/1964
54 lines
2.5 KiB
TOML
54 lines
2.5 KiB
TOML
[[bin]]
|
|
name = "staking-miner"
|
|
path = "src/main.rs"
|
|
|
|
[package]
|
|
name = "staking-miner"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
clap = { version = "4.0.9", features = ["derive", "env"] }
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
|
jsonrpsee = { version = "0.16.2", features = ["ws-client", "macros"] }
|
|
log = "0.4.17"
|
|
paste = "1.0.7"
|
|
serde = "1.0.163"
|
|
serde_json = "1.0"
|
|
thiserror = "1.0.31"
|
|
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread", "sync"] }
|
|
remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", package = "frame-remote-externalities" }
|
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
|
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" }
|
|
exitcode = "1.1"
|
|
|
|
sub-tokens = { git = "https://github.com/paritytech/substrate-debug-kit", branch = "master" }
|
|
signal-hook = "0.3"
|
|
futures-util = "0.3"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.4"
|