docs: add summary to experimental modules
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 56s
Test / build (map[name:stable]) (push) Successful in 1m11s
Release Please / Release-plz (push) Successful in 8s

This commit is contained in:
Paul Campbell 2025-01-10 08:29:35 +00:00
parent 6f56c691d5
commit 94f241596a

View file

@ -1,11 +1,17 @@
//
/// Macros for use with the [kameo](https://crates.io/crates/kameo) async actor framework.
#[cfg(feature = "use-kameo")]
pub mod kameo;
/// Macros for use with the [kxio](https://crates.io/crates/kxio) injectable IO crate.
#[cfg(feature = "use-kxio")]
pub mod kxio;
/// Macro for valueless new type.
mod marker;
/// Macro and function for converting a value to a [String]
mod to_string;
#[allow(unused_imports)]