front_vec/
lib.rs

1#![feature(ptr_internals, maybe_uninit_slice)]
2#![deny(unsafe_op_in_unsafe_fn)]
3#![allow(clippy::module_inception)]
4
5extern crate alloc;
6
7mod front_string;
8mod front_vec;
9
10pub use crate::{front_string::FrontString, front_vec::FrontVec};