erofs_component/lib.rs
1// Copyright 2026 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! EROFS Component Library.
6//!
7//! This crate provides the filesystem entity implementations (directories, files,
8//! and pager-backed storage structures) used to host and serve EROFS images.
9
10pub mod directory;
11pub mod file;
12pub mod pager;
13pub mod volume;
14
15pub use directory::ErofsDirectory;
16pub use file::ErofsFile;
17pub use pager::ErofsPager;
18pub use volume::ErofsVolume;