bytebox/
lib.rs

1pub use serde::Deserialize;
2pub use serde::Serialize;
3
4/// Contains the [ByteBox](byte_box::ByteBox) struct.\
5/// The core of the library.
6pub mod byte_box;
7
8/// Contains useful functions for working with common paths.\
9/// Uses [dirs] internally.
10#[cfg(feature = "path")]
11pub mod path;
12
13/// Contains the [ByteboxPlugin](bevy::ByteboxPlugin) plugin and other stuff.
14#[cfg(feature = "bevy")]
15pub mod bevy;
16
17#[cfg(test)]
18mod tests;