mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
5d8774016c
* Initial setup * Updates macro_magic version and refactors accordingly * Removes unwrap from macro * Splits into multiple sections * Uses call_site to fix macro hygiene issue * Initial setup * Removes unnecessary changes * Moves template palet back * Updates cargo.lock * Moves BagsList inside mod * Comments access to internal functions for now * Updates tests * Uncomments code * Fixes test * Moves bags-list to separate crate * Initial setup * Removes bags-list changes * Fix structure * Minor update * Addresses review comment * Adds a couple of UI tests. More to be added * Adds err files * Adds test for no pallet * Adds doc * Updates versions * Adds benchmarking * Updates doc link * ".git/.scripts/commands/fmt/fmt.sh" * Minor update * Adds missing changes * ".git/.scripts/commands/fmt/fmt.sh" * Update frame/support/procedural/src/lib.rs Co-authored-by: Sam Johnson <sam@durosoft.com> * Addresses review comments * Addresses review comments * ".git/.scripts/commands/fmt/fmt.sh" * Update frame/support/procedural/src/lib.rs Co-authored-by: Sam Johnson <sam@durosoft.com> * Update frame/support/procedural/src/lib.rs Co-authored-by: Sam Johnson <sam@durosoft.com> * Update frame/support/procedural/src/lib.rs Co-authored-by: Sam Johnson <sam@durosoft.com> * Adds UI test for disambiguation * ".git/.scripts/commands/fmt/fmt.sh" * Makes clippy happy * ".git/.scripts/commands/fmt/fmt.sh" * Fixes frame support test * Fixes frame support test * Split items other than storage * Updates versions * Fixes some review comments * Addresses review comments * ".git/.scripts/commands/fmt/fmt.sh" * Updates docs * Adds experimental disclaimer * ".git/.scripts/commands/fmt/fmt.sh" * Update frame/support/test/tests/split_ui/no_section_found.rs Co-authored-by: Sam Johnson <sam@durosoft.com> * Addresses review comments * Fixes test --------- Co-authored-by: command-bot <> Co-authored-by: command-bot <ci@gitlab.parity.io> Co-authored-by: Sam Johnson <sam@durosoft.com>
40 lines
1.4 KiB
TOML
40 lines
1.4 KiB
TOML
[package]
|
|
name = "pallet-examples"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "The single package with various examples for frame pallets"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
pallet-example-basic = { default-features = false, path = "./basic" }
|
|
pallet-default-config-example = { default-features = false, path = "./default-config" }
|
|
pallet-example-offchain-worker = { default-features = false, path = "./offchain-worker" }
|
|
pallet-example-kitchensink = { default-features = false, path = "./kitchensink" }
|
|
pallet-dev-mode = { default-features = false, path = "./dev-mode" }
|
|
pallet-example-split = { default-features = false, path = "./split" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"pallet-example-basic/std",
|
|
"pallet-default-config-example/std",
|
|
"pallet-example-offchain-worker/std",
|
|
"pallet-example-kitchensink/std",
|
|
"pallet-dev-mode/std",
|
|
"pallet-example-split/std",
|
|
]
|
|
try-runtime = [
|
|
"pallet-example-basic/try-runtime",
|
|
"pallet-default-config-example/try-runtime",
|
|
"pallet-example-offchain-worker/try-runtime",
|
|
"pallet-example-kitchensink/try-runtime",
|
|
"pallet-dev-mode/try-runtime",
|
|
"pallet-example-split/try-runtime",
|
|
]
|