1 2 3 4 5 6 7 8 9 10
// SPDX-License-Identifier: Apache-2.0 //! Encode source-less F3D archives and apply supported edits to retained source //! archives. pub(crate) mod generate; pub(crate) mod patch; pub(crate) mod primitives; #[cfg(test)] mod tests;