Skip to main content

objects/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2//! Heddle core domain modules extracted from the monolith.
3
4pub mod blame;
5pub mod fault_inject;
6pub mod legacy;
7pub mod observe;
8pub mod progress;
9pub mod store;
10pub mod sync;
11pub mod util;
12pub mod worktree;
13
14pub use error::{HeddleError, RecoveryDetails};
15pub use heddle_fs_prims::{fs_atomic, fs_clone, fs_ops, lock};
16pub use heddle_object_model::{error, object};
17pub use observe::{
18    CollectingWarnings, NoopProgress, NoopWarnings, ProgressEvent, ProgressSink, TaskId, Warning,
19    WarningSink,
20};
21pub use progress::{Progress, ProgressSnapshot, Sink};
22pub use sync::{LockExt, RwLockExt};
23
24#[cfg(test)]
25mod object_model_store_tests;