aranya_afc_util/lib.rs
1//! AFC support for Aranya.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![cfg_attr(not(any(test, doctest, feature = "std")), no_std)]
5#![warn(missing_docs)]
6
7mod ffi;
8mod handler;
9mod shared;
10pub mod testing;
11mod tests;
12mod transform;
13
14#[cfg(feature = "alloc")]
15#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
16pub use ffi::*;
17pub use handler::*;
18pub use transform::Transform;