1#![no_std]
2
3mod carve;
4mod copy_from;
5mod endian;
6mod from_arr;
7mod from_ref;
8mod splice;
9
10pub mod prelude {
11 #[cfg(feature = "carve")]
12 pub use crate::carve::*;
13
14 #[cfg(feature = "copy-from")]
15 pub use crate::copy_from::*;
16
17 #[cfg(feature = "endian")]
18 pub use crate::endian::*;
19
20 #[cfg(feature = "from-arr")]
21 pub use crate::from_arr::*;
22
23 #[cfg(feature = "from-ref")]
24 pub use crate::from_ref::*;
25
26 #[cfg(feature = "splice")]
27 pub use crate::splice::*;
28}