mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
9fc4e16eff
* Bump spec_version to 9260 * Version bump to v0.9.26
63 lines
3.5 KiB
TOML
63 lines
3.5 KiB
TOML
[package]
|
|
name = "polkadot-client"
|
|
version = "0.9.26"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot Runtimes
|
|
polkadot-runtime = { path = "../../runtime/polkadot", optional = true }
|
|
kusama-runtime = { path = "../../runtime/kusama", optional = true }
|
|
westend-runtime = { path = "../../runtime/westend", optional = true }
|
|
rococo-runtime = { path = "../../runtime/rococo", optional = true }
|
|
|
|
polkadot-core-primitives = { path = "../../core-primitives" }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-node-core-parachains-inherent = { path = "../core/parachains-inherent" }
|
|
polkadot-runtime-common = { path = "../../runtime/common" }
|
|
|
|
[features]
|
|
default = ["polkadot"]
|
|
polkadot = ["polkadot-runtime"]
|
|
kusama = ["kusama-runtime"]
|
|
rococo = ["rococo-runtime"]
|
|
westend = ["westend-runtime"]
|
|
runtime-metrics = [
|
|
"rococo-runtime/runtime-metrics",
|
|
"kusama-runtime/runtime-metrics",
|
|
"westend-runtime/runtime-metrics",
|
|
"polkadot-runtime/runtime-metrics",
|
|
]
|