future_fn/lib.rs
1//! future-fn
2//!
3//! A Rust library providing macros to simplify the creation of
4//! asynchronous closures with external state captured by move.
5//! Useful for structuring asynchronous code with ease and clarity.
6
7pub(crate) mod cfg;
8pub(crate) mod r#macro;
9
10#[allow(unused_imports)]
11pub use r#macro::*;