composefs/lib.rs
1pub mod dumpfile;
2pub mod dumpfile_parse;
3pub mod erofs;
4pub mod filesystem_ops;
5pub mod fs;
6pub mod fsverity;
7pub mod mount;
8pub mod mountcompat;
9pub mod repository;
10pub mod splitstream;
11pub mod tree;
12pub mod util;
13
14#[cfg(any(test, feature = "test"))]
15pub mod test;
16
17/// All files that contain 64 or fewer bytes (size <= INLINE_CONTENT_MAX) should be stored inline
18/// in the erofs image (and also in splitstreams). All files with 65 or more bytes (size > MAX)
19/// should be written to the object storage and referred to from the image (and splitstreams).
20pub const INLINE_CONTENT_MAX: usize = 64;