mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
150 lines
5.4 KiB
TOML
150 lines
5.4 KiB
TOML
[package]
|
|
name = "solochain-template-runtime"
|
|
description = "A solochain runtime template built with Substrate, part of Polkadot Sdk."
|
|
version = "0.0.0"
|
|
license = "MIT-0"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
scale-info = { version = "2.11.1", default-features = false, features = [
|
|
"derive",
|
|
"serde",
|
|
] }
|
|
|
|
# frame
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false, features = ["experimental"] }
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false }
|
|
frame-try-runtime = { path = "../../../substrate/frame/try-runtime", default-features = false, optional = true }
|
|
frame-executive = { path = "../../../substrate/frame/executive", default-features = false }
|
|
|
|
# frame pallets
|
|
pallet-aura = { path = "../../../substrate/frame/aura", default-features = false }
|
|
pallet-balances = { path = "../../../substrate/frame/balances", default-features = false }
|
|
pallet-grandpa = { path = "../../../substrate/frame/grandpa", default-features = false }
|
|
pallet-sudo = { path = "../../../substrate/frame/sudo", default-features = false }
|
|
pallet-timestamp = { path = "../../../substrate/frame/timestamp", default-features = false }
|
|
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment", default-features = false }
|
|
|
|
# primitives
|
|
sp-api = { path = "../../../substrate/primitives/api", default-features = false }
|
|
sp-block-builder = { path = "../../../substrate/primitives/block-builder", default-features = false }
|
|
sp-consensus-aura = { path = "../../../substrate/primitives/consensus/aura", default-features = false, features = [
|
|
"serde",
|
|
] }
|
|
sp-consensus-grandpa = { path = "../../../substrate/primitives/consensus/grandpa", default-features = false, features = [
|
|
"serde",
|
|
] }
|
|
sp-core = { path = "../../../substrate/primitives/core", default-features = false, features = [
|
|
"serde",
|
|
] }
|
|
sp-inherents = { path = "../../../substrate/primitives/inherents", default-features = false }
|
|
sp-offchain = { path = "../../../substrate/primitives/offchain", default-features = false }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false, features = [
|
|
"serde",
|
|
] }
|
|
sp-session = { path = "../../../substrate/primitives/session", default-features = false }
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false }
|
|
sp-storage = { path = "../../../substrate/primitives/storage", default-features = false }
|
|
sp-transaction-pool = { path = "../../../substrate/primitives/transaction-pool", default-features = false }
|
|
sp-version = { path = "../../../substrate/primitives/version", default-features = false, features = [
|
|
"serde",
|
|
] }
|
|
sp-genesis-builder = { path = "../../../substrate/primitives/genesis-builder", default-features = false }
|
|
|
|
# RPC related
|
|
frame-system-rpc-runtime-api = { path = "../../../substrate/frame/system/rpc/runtime-api", default-features = false }
|
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false }
|
|
|
|
# Used for runtime benchmarking
|
|
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
|
frame-system-benchmarking = { path = "../../../substrate/frame/system/benchmarking", default-features = false, optional = true }
|
|
|
|
# The pallet in this template.
|
|
pallet-template = { path = "../pallets/template", default-features = false }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../substrate/utils/wasm-builder", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-benchmarking?/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
|
|
"frame-benchmarking?/std",
|
|
"frame-try-runtime?/std",
|
|
|
|
"pallet-aura/std",
|
|
"pallet-balances/std",
|
|
"pallet-grandpa/std",
|
|
"pallet-sudo/std",
|
|
"pallet-template/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-consensus-grandpa/std",
|
|
"sp-core/std",
|
|
"sp-genesis-builder/std",
|
|
"sp-inherents/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-storage/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
|
|
"substrate-wasm-builder",
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-grandpa/runtime-benchmarks",
|
|
"pallet-sudo/runtime-benchmarks",
|
|
"pallet-template/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
|
|
try-runtime = [
|
|
"frame-executive/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-try-runtime/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-grandpa/try-runtime",
|
|
"pallet-sudo/try-runtime",
|
|
"pallet-template/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"pallet-transaction-payment/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|