backhand 0.25.1

Library for the reading, creating, and modification of SquashFS file systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! SquashFS v3 with LZMA compression support

pub mod compressor;
pub mod standard_compressor;

pub use crate::v3::{
    data, dir, export, filesystem, fragment, id, inode, metadata, reader, squashfs, unix_string,
};

pub use compressor::LzmaAdaptiveCompressor;
pub use standard_compressor::LzmaStandardCompressor;