76 lines
2.0 KiB
TOML
76 lines
2.0 KiB
TOML
[package]
|
|
name = "pezpallet-parameters"
|
|
description = "Pallet to store and configure parameters."
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
version = "0.44.0"
|
|
authors = [
|
|
"Acala Developers",
|
|
"Kurdistan Tech Institute <info@pezkuwichain.io>",
|
|
"Parity Technologies <admin@parity.io>",
|
|
]
|
|
edition.workspace = true
|
|
documentation.workspace = true
|
|
homepage = { workspace = true }
|
|
|
|
[dependencies]
|
|
codec = { features = ["max-encoded-len"], workspace = true }
|
|
docify = { workspace = true }
|
|
paste = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { features = [
|
|
"derive",
|
|
], optional = true, workspace = true, default-features = true }
|
|
|
|
pezframe-benchmarking = { optional = true, workspace = true }
|
|
pezframe-support = { features = ["experimental"], workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-example-basic = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezframe-benchmarking?/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezsp-core/std",
|
|
"pezsp-runtime/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-benchmarking/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-example-basic/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-benchmarking?/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezpallet-example-basic/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
serde = [
|
|
"codec/serde",
|
|
"dep:serde",
|
|
"pezframe-benchmarking?/serde",
|
|
"pezsp-core/serde",
|
|
"pezsp-runtime/serde",
|
|
"scale-info/serde",
|
|
]
|
|
experimental = []
|
|
with-tracing = []
|
|
tuples-96 = []
|