heddle-objects 0.15.0

An AI-native version control system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: Apache-2.0
//! Filesystem payload for the storage-agnostic repack scheduler.

mod blob_lineage;
#[cfg(test)]
mod blob_lineage_tests;
mod blob_renames;
mod blob_writer;
mod compact;
mod cutover;
mod operation;
mod staging;

pub(super) use cutover::acquire_repack_lock_blocking;
pub use operation::FsRepackOperation;

#[cfg(test)]
mod tests;