lamzfs 0.1.0

no_std read-only ZFS reader for UEFI bootloaders (single/mirror/raidz1, unencrypted bpool)
Documentation
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: MIT
// Adapted from rzfs @ea41cf0b5b29 (dual GPL-2.0 OR MIT; MIT elected); see NOTICE.

pub(crate) mod common;
pub use common::{Compression, CompressionError, Decompression, DecompressionError};

pub(crate) mod lzjb;
pub use lzjb::{LzjbDecoder, LzjbEncoder};