Files
pezkuwi-sdk/pezbridges/primitives/xcm-bridge-hub-router/Cargo.toml
T
pezkuwichain 267fcec12d fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
2026-01-26 00:39:59 +03:00

41 lines
939 B
TOML

[package]
name = "pezbp-xcm-bridge-hub-router"
description = "Primitives of the xcm-bridge-hub fee pezpallet."
version = "0.7.0"
authors.workspace = true
edition.workspace = true
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository.workspace = true
documentation.workspace = true
homepage = { workspace = true }
[lints]
workspace = true
[dependencies]
codec = { features = ["bit-vec", "derive"], workspace = true }
scale-info = { features = ["bit-vec", "derive"], workspace = true }
# Bizinikiwi Dependencies
pezsp-core = { workspace = true }
pezsp-runtime = { workspace = true }
# Pezkuwi Dependencies
xcm = { workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"pezsp-core/std",
"pezsp-runtime/std",
"scale-info/std",
"xcm/std",
]
runtime-benchmarks = [
"pezsp-runtime/runtime-benchmarks",
"xcm/runtime-benchmarks",
]
try-runtime = ["pezsp-runtime/try-runtime", "xcm/try-runtime"]
serde = []