bd2d665c4e
- 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.
66 lines
1.5 KiB
TOML
66 lines
1.5 KiB
TOML
[package]
|
|
name = "pezsnowbridge-runtime-common"
|
|
description = "Snowbridge Runtime Common"
|
|
version = "0.2.0"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
documentation = "https://docs.pezkuwichain.io/pezsnowbridge-runtime-common"
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.pezkuwi-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezpallet-xcm = { workspace = true }
|
|
pezsp-arithmetic = { workspace = true }
|
|
pezsp-std = { workspace = true }
|
|
tracing = { workspace = true }
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezpallet-xcm/std",
|
|
"pezsp-arithmetic/std",
|
|
"pezsp-std/std",
|
|
"tracing/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-xcm/try-runtime",
|
|
"xcm-builder/try-runtime",
|
|
"xcm-executor/try-runtime",
|
|
"xcm/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
tuples-96 = []
|