void_core/index/mod.rs
1//! Index management for void repositories.
2//!
3//! The index tracks staged files with their content hashes and filesystem metadata
4//! (mtime, size) for fast dirty detection.
5
6mod entry;
7mod io;
8mod rebuild;
9mod types;
10mod workspace;
11
12#[cfg(test)]
13mod tests;
14
15pub use entry::*;
16pub use io::*;
17pub use rebuild::*;
18pub use types::*;
19pub use workspace::*;