479010094e
- Remove missing cli crate from workspace members - Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml - Fix Rust import ordering with cargo fmt - Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
69 lines
2.0 KiB
TOML
69 lines
2.0 KiB
TOML
[package]
|
|
name = "pezpallet-meta-tx"
|
|
description = "FRAME pezpallet enabling meta transactions."
|
|
license = "Apache-2.0"
|
|
version = "0.44.0"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.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",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-std/std",
|
|
"scale-info/std",
|
|
"serde?/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",
|
|
]
|