18 lines
610 B
Rust
18 lines
610 B
Rust
// file: kb-lib/src/materializer/perpetuals.rs
|
|
// version: 4
|
|
|
|
//! `perpetuals` materializer family.
|
|
|
|
mod constants;
|
|
mod materializer;
|
|
|
|
/// Reserved perpetuals materializer.
|
|
pub use self::materializer::MtPerpetualsMaterializer;
|
|
|
|
/// Empty accepted-family boundary for the reserved component.
|
|
pub(crate) use self::constants::MT_PERPETUALS_ACCEPTED_FAMILIES;
|
|
/// Stable runtime component name for the `perpetuals` materializer.
|
|
pub(crate) use self::constants::MT_PERPETUALS_COMPONENT_NAME;
|
|
/// Stable processor name for the `perpetuals` materializer.
|
|
pub(crate) use self::constants::MT_PERPETUALS_PROCESSOR_NAME;
|