[package] name = "pezpallet-meta-tx" description = "FRAME pallet enabling meta transactions." license = "Apache-2.0" version = "0.1.0" edition.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true [lints] workspace = true [dependencies] codec = { workspace = true, features = ["max-encoded-len"] } docify = { workspace = true } scale-info = { workspace = true, features = ["derive"] } serde = { features = ["derive"], optional = true, workspace = true } pezframe-benchmarking = { workspace = true, optional = true } pezframe-support = { workspace = true } pezframe-system = { workspace = true } pezsp-core = { workspace = true } pezsp-io = { workspace = true } pezsp-runtime = { workspace = true } pezsp-std = { workspace = true } [dev-dependencies] pezpallet-balances = { workspace = true, default-features = true } pezpallet-transaction-payment = { workspace = true, default-features = true } pezpallet-verify-signature = { workspace = true, default-features = true } pezsp-keyring = { workspace = true, default-features = true } pezsp-keystore = { workspace = true, default-features = true } [features] default = ["std"] std = [ "codec/std", "pezframe-benchmarking?/std", "pezframe-support/std", "pezframe-system/std", "scale-info/std", "serde?/std", "pezsp-core/std", "pezsp-io/std", "pezsp-runtime/std", "pezsp-std/std", ] runtime-benchmarks = [ "pezframe-benchmarking/runtime-benchmarks", "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", "pezpallet-balances/runtime-benchmarks", "pezpallet-transaction-payment/runtime-benchmarks", "pezpallet-verify-signature/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-verify-signature/try-runtime", "pezsp-runtime/try-runtime", ]