aranya_aqc_util/lib.rs
1//! AQC 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;
12
13pub use aranya_crypto::policy::LabelId;
14#[cfg(feature = "alloc")]
15#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
16pub use ffi::*;
17pub use handler::*;