mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 11:57:56 +00:00
12443589e3
Bumps the known_good_semver group with 1 update: [clap](https://github.com/clap-rs/clap). - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.1...v4.4.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: known_good_semver ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
2.3 KiB
TOML
55 lines
2.3 KiB
TOML
[[bin]]
|
|
name = "staging-staking-miner"
|
|
path = "src/main.rs"
|
|
|
|
[package]
|
|
name = "staging-staking-miner"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
clap = { version = "4.4.2", 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.188"
|
|
serde_json = "1.0"
|
|
thiserror = "1.0.31"
|
|
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread", "sync"] }
|
|
remote-externalities = { package = "frame-remote-externalities" , path = "../../../substrate/utils/frame/remote-externalities" }
|
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-version = { path = "../../../substrate/primitives/version" }
|
|
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-npos-elections = { path = "../../../substrate/primitives/npos-elections" }
|
|
sc-transaction-pool-api = { path = "../../../substrate/client/transaction-pool/api" }
|
|
|
|
frame-system = { path = "../../../substrate/frame/system" }
|
|
frame-support = { path = "../../../substrate/frame/support" }
|
|
frame-election-provider-support = { path = "../../../substrate/frame/election-provider-support" }
|
|
pallet-election-provider-multi-phase = { path = "../../../substrate/frame/election-provider-multi-phase" }
|
|
pallet-staking = { path = "../../../substrate/frame/staking" }
|
|
pallet-balances = { path = "../../../substrate/frame/balances" }
|
|
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
|
|
|
|
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 = { package = "staging-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"
|