71 lines
2.4 KiB
TOML
71 lines
2.4 KiB
TOML
[package]
|
|
name = "pallet-examples"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "The single package with examples of various types of FRAME pallets"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
pallet-default-config-example = { workspace = true }
|
|
pallet-dev-mode = { workspace = true }
|
|
pallet-example-authorization-tx-extension = { workspace = true }
|
|
pallet-example-basic = { workspace = true }
|
|
pallet-example-frame-crate = { workspace = true }
|
|
pallet-example-kitchensink = { workspace = true }
|
|
pallet-example-offchain-worker = { workspace = true }
|
|
pallet-example-single-block-migrations = { workspace = true }
|
|
pallet-example-split = { workspace = true }
|
|
pallet-example-tasks = { workspace = true }
|
|
pallet-example-view-functions = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"pallet-default-config-example/std",
|
|
"pallet-dev-mode/std",
|
|
"pallet-example-authorization-tx-extension/std",
|
|
"pallet-example-basic/std",
|
|
"pallet-example-frame-crate/std",
|
|
"pallet-example-kitchensink/std",
|
|
"pallet-example-offchain-worker/std",
|
|
"pallet-example-single-block-migrations/std",
|
|
"pallet-example-split/std",
|
|
"pallet-example-tasks/std",
|
|
"pallet-example-view-functions/std",
|
|
]
|
|
try-runtime = [
|
|
"pallet-default-config-example/try-runtime",
|
|
"pallet-dev-mode/try-runtime",
|
|
"pallet-example-authorization-tx-extension/try-runtime",
|
|
"pallet-example-basic/try-runtime",
|
|
"pallet-example-kitchensink/try-runtime",
|
|
"pallet-example-offchain-worker/try-runtime",
|
|
"pallet-example-single-block-migrations/try-runtime",
|
|
"pallet-example-split/try-runtime",
|
|
"pallet-example-tasks/try-runtime",
|
|
"pallet-example-view-functions/try-runtime",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pallet-default-config-example/runtime-benchmarks",
|
|
"pallet-dev-mode/runtime-benchmarks",
|
|
"pallet-example-authorization-tx-extension/runtime-benchmarks",
|
|
"pallet-example-basic/runtime-benchmarks",
|
|
"pallet-example-frame-crate/runtime-benchmarks",
|
|
"pallet-example-kitchensink/runtime-benchmarks",
|
|
"pallet-example-offchain-worker/runtime-benchmarks",
|
|
"pallet-example-single-block-migrations/runtime-benchmarks",
|
|
"pallet-example-split/runtime-benchmarks",
|
|
"pallet-example-tasks/runtime-benchmarks",
|
|
"pallet-example-view-functions/runtime-benchmarks",
|
|
]
|