241bace6ad
- Fixed is_using_frame_crate() macro to check for pezframe/pezkuwi_sdk - Removed disable_pezframe_system_supertrait_check temporary bypasses - Feature-gated storage-benchmark and teyrchain-benchmarks code - Fixed dead_code warnings with underscore prefix (_Header) - Removed unused imports and shadowing use statements - Version bumps: procedural-tools 10.0.1, benchmarking-cli 32.0.1, docs 0.0.2, minimal-runtime 0.0.1, yet-another-teyrchain 0.6.1, umbrella 0.1.2 - Updated MAINNET_ROADMAP.md with FAZ 1 completion status
58 lines
2.0 KiB
TOML
58 lines
2.0 KiB
TOML
[package]
|
|
name = "xcm-pez-docs"
|
|
description = "Documentation and guides for XCM"
|
|
version = "0.1.0"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
documentation.workspace = true
|
|
homepage = { workspace = true }
|
|
|
|
[dependencies]
|
|
# For XCM stuff
|
|
pezpallet-xcm = { workspace = true, default-features = true }
|
|
xcm = { workspace = true, default-features = true }
|
|
xcm-builder = { workspace = true, default-features = true }
|
|
xcm-executor = { workspace = true, default-features = true }
|
|
xcm-pez-simulator = { workspace = true, default-features = true }
|
|
|
|
# For building FRAME runtimes
|
|
codec = { workspace = true, default-features = true }
|
|
pezframe = { features = ["runtime"], workspace = true, default-features = true }
|
|
pezframe-support = { workspace = true, default-features = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
scale-info = { workspace = true }
|
|
|
|
# Some pallets
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-message-queue = { workspace = true, default-features = true }
|
|
|
|
# For building docs
|
|
docify = { workspace = true }
|
|
simple-mermaid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
test-log = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezframe/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-pez-simulator/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|