chore: regenerate umbrella crate, fix feature propagation

This commit is contained in:
2025-12-16 11:28:32 +03:00
parent dd6d48f528
commit 620b0e3aa0
1358 changed files with 9464 additions and 7656 deletions
+22 -19
View File
@@ -22,37 +22,40 @@
//!
//! ## Pallets
//!
//! - [`pezpallet_example_basic`]: This pezpallet demonstrates concepts, APIs and structures common to
//! most FRAME runtimes.
//! - [`pezpallet_example_basic`]: This pezpallet demonstrates concepts, APIs and structures common
//! to most FRAME runtimes.
//!
//! - [`pezpallet_example_offchain_worker`]: This pezpallet demonstrates concepts, APIs and structures
//! common to most offchain workers.
//! - [`pezpallet_example_offchain_worker`]: This pezpallet demonstrates concepts, APIs and
//! structures common to most offchain workers.
//!
//! - [`pezpallet_default_config_example`]: This pezpallet demonstrates different ways to implement the
//! `Config` trait of pallets.
//! - [`pezpallet_default_config_example`]: This pezpallet demonstrates different ways to implement
//! the `Config` trait of pallets.
//!
//! - [`pezpallet_dev_mode`]: This pezpallet demonstrates the ease of requirements for a pezpallet in "dev
//! mode".
//! - [`pezpallet_dev_mode`]: This pezpallet demonstrates the ease of requirements for a pezpallet
//! in "dev mode".
//!
//! - [`pezpallet_example_kitchensink`]: This pezpallet demonstrates a catalog of all FRAME macros in use
//! and their various syntax options.
//! - [`pezpallet_example_kitchensink`]: This pezpallet demonstrates a catalog of all FRAME macros
//! in use and their various syntax options.
//!
//! - [`pezpallet_example_split`]: A simple example of a FRAME pezpallet demonstrating the ability to
//! split sections across multiple files.
//! - [`pezpallet_example_split`]: A simple example of a FRAME pezpallet demonstrating the ability
//! to split sections across multiple files.
//!
//! - [`pezpallet_example_frame_crate`]: Example pezpallet showcasing how one can be built using only the
//! - [`pezpallet_example_frame_crate`]: Example pezpallet showcasing how one can be built using
//! only the
//! `frame` umbrella crate.
//!
//! - [`pezpallet_example_single_block_migrations`]: An example pezpallet demonstrating best-practices for
//! writing storage migrations.
//! - [`pezpallet_example_single_block_migrations`]: An example pezpallet demonstrating
//! best-practices for writing storage migrations.
//!
//! - [`pezpallet_example_tasks`]: This pezpallet demonstrates the use of `Tasks` to execute service work.
//! - [`pezpallet_example_tasks`]: This pezpallet demonstrates the use of `Tasks` to execute service
//! work.
//!
//! - [`pezpallet_example_view_functions`]: This pezpallet demonstrates the use of view functions to query
//! pezpallet state.
//! - [`pezpallet_example_view_functions`]: This pezpallet demonstrates the use of view functions to
//! query pezpallet state.
//!
//! - [`pezpallet_example_authorization_tx_extension`]: An example `TransactionExtension` that
//! authorizes a custom origin through signature validation, along with two support pallets to
//! showcase the usage.
//!
//! **Tip**: Use `cargo doc --package <pezpallet-name> --open` to view each pezpallet's documentation.
//! **Tip**: Use `cargo doc --package <pezpallet-name> --open` to view each pezpallet's
//! documentation.