ea341084f0
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
137 lines
4.1 KiB
TOML
137 lines
4.1 KiB
TOML
[package]
|
|
name = "pezbridge-runtime-common"
|
|
version = "0.7.0"
|
|
description = "Common types and functions that may be used by bizinikiwi-based runtimes of all bridged chains"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
documentation.workspace = true
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
static_assertions = { optional = true, workspace = true, default-features = true }
|
|
tracing = { workspace = true }
|
|
tuplex = { workspace = true }
|
|
|
|
# Bridge dependencies
|
|
pezbp-header-pez-chain = { workspace = true }
|
|
pezbp-messages = { workspace = true }
|
|
pezbp-pezkuwi-core = { workspace = true }
|
|
pezbp-relayers = { workspace = true }
|
|
pezbp-runtime = { workspace = true }
|
|
pezbp-teyrchains = { workspace = true }
|
|
pezpallet-bridge-grandpa = { workspace = true }
|
|
pezpallet-bridge-messages = { workspace = true }
|
|
pezpallet-bridge-relayers = { workspace = true }
|
|
pezpallet-bridge-teyrchains = { workspace = true }
|
|
|
|
# Bizinikiwi dependencies
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezpallet-transaction-payment = { workspace = true }
|
|
pezpallet-utility = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-std = { workspace = true }
|
|
pezsp-trie = { optional = true, workspace = true }
|
|
pezsp-weights = { workspace = true }
|
|
|
|
# Pezkuwi dependencies
|
|
xcm = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezbp-test-utils = { workspace = true }
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-bridge-messages = { features = [
|
|
"std",
|
|
"test-helpers",
|
|
], workspace = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezbp-header-pez-chain/std",
|
|
"pezbp-messages/std",
|
|
"pezbp-pezkuwi-core/std",
|
|
"pezbp-relayers/std",
|
|
"pezbp-runtime/std",
|
|
"pezbp-test-utils/std",
|
|
"pezbp-teyrchains/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezpallet-bridge-grandpa/std",
|
|
"pezpallet-bridge-messages/std",
|
|
"pezpallet-bridge-relayers/std",
|
|
"pezpallet-bridge-teyrchains/std",
|
|
"pezpallet-transaction-payment/std",
|
|
"pezpallet-utility/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-std/std",
|
|
"pezsp-trie/std",
|
|
"pezsp-weights/std",
|
|
"scale-info/std",
|
|
"tracing/std",
|
|
"tuplex/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezbp-header-pez-chain/runtime-benchmarks",
|
|
"pezbp-messages/runtime-benchmarks",
|
|
"pezbp-pezkuwi-core/runtime-benchmarks",
|
|
"pezbp-relayers/runtime-benchmarks",
|
|
"pezbp-runtime/runtime-benchmarks",
|
|
"pezbp-runtime/test-helpers",
|
|
"pezbp-test-utils/runtime-benchmarks",
|
|
"pezbp-teyrchains/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-bridge-grandpa/runtime-benchmarks",
|
|
"pezpallet-bridge-messages/runtime-benchmarks",
|
|
"pezpallet-bridge-messages/test-helpers",
|
|
"pezpallet-bridge-relayers/runtime-benchmarks",
|
|
"pezpallet-bridge-teyrchains/runtime-benchmarks",
|
|
"pezpallet-transaction-payment/runtime-benchmarks",
|
|
"pezpallet-utility/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-trie",
|
|
"pezsp-trie?/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
integrity-test = ["static_assertions"]
|
|
test-helpers = ["pezbp-runtime/test-helpers", "pezsp-trie"]
|
|
try-runtime = [
|
|
"pezbp-header-pez-chain/try-runtime",
|
|
"pezbp-messages/try-runtime",
|
|
"pezbp-pezkuwi-core/try-runtime",
|
|
"pezbp-relayers/try-runtime",
|
|
"pezbp-runtime/try-runtime",
|
|
"pezbp-test-utils/try-runtime",
|
|
"pezbp-teyrchains/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezpallet-bridge-grandpa/try-runtime",
|
|
"pezpallet-bridge-messages/try-runtime",
|
|
"pezpallet-bridge-relayers/try-runtime",
|
|
"pezpallet-bridge-teyrchains/try-runtime",
|
|
"pezpallet-transaction-payment/try-runtime",
|
|
"pezpallet-utility/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"xcm/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
with-tracing = []
|
|
tuples-96 = []
|