1//! Aligned heap-allocated vector for SIMD workloads. 2 3pub mod rkyv; 4 5mod aligned; 6#[cfg(test)] 7mod tests; 8 9pub use aligned::AlignedVec;