mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 06:27:58 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "pallet-examples"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "The single package with various examples for frame pallets"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
pallet-example-basic = { path = "basic", default-features = false}
|
|
pallet-default-config-example = { path = "default-config", default-features = false}
|
|
pallet-example-offchain-worker = { path = "offchain-worker", default-features = false}
|
|
pallet-example-kitchensink = { path = "kitchensink", default-features = false}
|
|
pallet-dev-mode = { path = "dev-mode", default-features = false}
|
|
pallet-example-split = { path = "split", default-features = false}
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"pallet-default-config-example/std",
|
|
"pallet-dev-mode/std",
|
|
"pallet-example-basic/std",
|
|
"pallet-example-kitchensink/std",
|
|
"pallet-example-offchain-worker/std",
|
|
"pallet-example-split/std",
|
|
]
|
|
try-runtime = [
|
|
"pallet-default-config-example/try-runtime",
|
|
"pallet-dev-mode/try-runtime",
|
|
"pallet-example-basic/try-runtime",
|
|
"pallet-example-kitchensink/try-runtime",
|
|
"pallet-example-offchain-worker/try-runtime",
|
|
"pallet-example-split/try-runtime",
|
|
]
|