mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
0bbda78d86
CI will be enforcing this with next parity-publish release
58 lines
2.0 KiB
TOML
58 lines
2.0 KiB
TOML
[package]
|
|
name = "pallet-parameters"
|
|
description = "Pallet to store and configure parameters."
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
version = "0.1.0"
|
|
authors = ["Acala Developers", "Parity Technologies <admin@parity.io>"]
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
|
|
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] }
|
|
paste = { version = "1.0.14", default-features = false }
|
|
serde = { features = ["derive"], optional = true, workspace = true, default-features = true }
|
|
docify = "0.2.8"
|
|
|
|
frame-support = { path = "../support", default-features = false, features = ["experimental"] }
|
|
frame-system = { path = "../system", default-features = false }
|
|
sp-core = { path = "../../primitives/core", default-features = false }
|
|
sp-runtime = { path = "../../primitives/runtime", default-features = false }
|
|
sp-std = { path = "../../primitives/std", default-features = false }
|
|
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { path = "../../primitives/core", features = ["std"] }
|
|
sp-io = { path = "../../primitives/io", features = ["std"] }
|
|
pallet-example-basic = { path = "../examples/basic", features = ["std"] }
|
|
pallet-balances = { path = "../balances", features = ["std"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-example-basic/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-example-basic/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|