mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
700d5f85b7
Built on top of https://github.com/paritytech/polkadot-sdk/pull/2826/ which was a trial run. Guide: https://github.com/w3f/polkadot-wiki/blob/master/docs/maintain/maintain-guides-async-backing.md --------- Signed-off-by: georgepisaltu <george.pisaltu@parity.io> Co-authored-by: Branislav Kontur <bkontur@gmail.com> Co-authored-by: Dónal Murray <donal.murray@parity.io> Co-authored-by: Dmitry Sinyavin <dmitry.sinyavin@parity.io> Co-authored-by: s0me0ne-unkn0wn <48632512+s0me0ne-unkn0wn@users.noreply.github.com> Co-authored-by: Svyatoslav Nikolsky <svyatonik@gmail.com> Co-authored-by: Bastian Köcher <info@kchr.de> Co-authored-by: georgepisaltu <52418509+georgepisaltu@users.noreply.github.com>
46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[package]
|
|
name = "testnet-parachains-constants"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Common constants for Testnet Parachains runtimes"
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
smallvec = "1.11.0"
|
|
|
|
# Substrate
|
|
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
|
|
# Polkadot
|
|
polkadot-core-primitives = { path = "../../../../polkadot/core-primitives", default-features = false }
|
|
rococo-runtime-constants = { path = "../../../../polkadot/runtime/rococo/constants", default-features = false, optional = true }
|
|
westend-runtime-constants = { path = "../../../../polkadot/runtime/westend/constants", default-features = false, optional = true }
|
|
xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../../../primitives/core", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"cumulus-primitives-core/std",
|
|
"frame-support/std",
|
|
"polkadot-core-primitives/std",
|
|
"rococo-runtime-constants?/std",
|
|
"sp-runtime/std",
|
|
"westend-runtime-constants?/std",
|
|
"xcm/std",
|
|
]
|
|
|
|
# Test runtimes specific features.
|
|
rococo = ["rococo-runtime-constants"]
|
|
westend = ["westend-runtime-constants"]
|