// Copyright 2024 The ChromiumOS Authors1// Use of this source code is governed by a BSD-style license that can be2// found in the LICENSE file.34//! This crate provides a logic for creating an ext2 filesystem on memory.56#![cfg(any(target_os = "android", target_os = "linux"))]7#![deny(missing_docs)]89mod arena;10mod bitmap;11mod blockgroup;12mod builder;13mod fs;14mod inode;15mod superblock;16mod xattr;1718pub use blockgroup::BLOCK_SIZE;19pub use builder::Builder;20pub use xattr::dump_xattrs;21pub use xattr::set_xattr;222324