void_core/metadata/mod.rs
1//! Metadata types for void repositories.
2//!
3//! The metadata bundle maps shard IDs to their CIDs and stores
4//! the repo secret used for shard assignment.
5
6mod types;
7mod compat;
8mod bundle;
9mod commit;
10mod hashing;
11pub mod manifest_tree;
12mod shard_map;
13
14#[cfg(test)]
15mod tests;
16
17pub use types::*;
18pub use compat::*;
19pub use hashing::*;