// Activate some of the Rust 2024 lints to make the future migration easier.
pub use FileInfo;
/// Alias for file offsets and sizes - since files can exceed 4GB, use 64-bits
pub type FileSize = u64;
/// Single IO performed on a filesystem can never exceed 32-bits,
/// this also constrains possible buffer sizes that are used for IO operations.
pub type IoSize = u32;