mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 10:27:59 +00:00
b0a4f78edc
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.131 to 1.0.132. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.131...v1.0.132) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
48 lines
2.2 KiB
TOML
48 lines
2.2 KiB
TOML
[package]
|
|
name = "staking-miner"
|
|
version = "0.9.13"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
tokio = { version = "1.15", features = ["macros"] }
|
|
log = "0.4.11"
|
|
env_logger = "0.9.0"
|
|
structopt = "0.3.25"
|
|
jsonrpsee = { version = "0.4.1", default-features = false, features = ["ws-client"] }
|
|
serde_json = "1.0"
|
|
serde = "1.0.132"
|
|
paste = "1.0.6"
|
|
thiserror = "1.0.30"
|
|
|
|
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" }
|