composefs 0.7.0

Rust library for the composefs filesystem
Documentation
1
2
3
4
5
6
7
8
9
10
//! EROFS (Enhanced Read-Only File System) format support for composefs.
//!
//! This module provides functionality to read and write EROFS filesystem images,
//! which are used as the underlying storage format for composefs images.

pub mod composefs;
pub mod debug;
pub mod format;
pub mod reader;
pub mod writer;