mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 19:38:02 +00:00
c8cdf9fc03
* Integrate benchmark-overhead command Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Beauty fix test Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Spellcheck on Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove constants:: module Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update block+extrinsic weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert "Update block+extrinsic weights" This reverts commit d77bf977f6bca0b1ded35daa2fd54b97e18a67db. * Revert "Remove constants:: module" This reverts commit 2d3bcd0212c438f6b96755900a01762592d90265. * Review fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Review fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Review fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Review fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * CI Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: parity-processbot <>
64 lines
3.5 KiB
TOML
64 lines
3.5 KiB
TOML
[package]
|
|
name = "polkadot-client"
|
|
version = "0.9.18"
|
|
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" }
|
|
|
|
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 }
|
|
|
|
pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
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",
|
|
]
|