Files
pezkuwi-sdk/pezkuwi/xcm/procedural/Cargo.toml
T

37 lines
853 B
TOML

[package]
name = "xcm-procedural"
description = "Procedural macros for XCM"
authors.workspace = true
edition.workspace = true
license.workspace = true
version = "7.0.0"
publish = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[lib]
proc-macro = true
[dependencies]
Inflector = { workspace = true }
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true }
[dev-dependencies]
trybuild = { features = ["diff"], workspace = true }
# NOTE: we have to explicitly specify `std` because of trybuild
# https://github.com/paritytech/polkadot-sdk/pull/5167
xcm = { workspace = true, default-features = true, features = ["std"] }
# For testing macros.
frame-support = { workspace = true }
[features]
runtime-benchmarks = [
"frame-support/runtime-benchmarks",
"xcm/runtime-benchmarks",
]