heddle-core 0.5.0

An AI-native version control system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
//! Embeddable Heddle facade scaffolding.

pub mod context;
pub mod fsck;
pub mod query;

pub use context::{ExecutionContext, ExecutionContextBuilder, Verbosity};
pub use fsck::{FsckError, FsckOptions, FsckReport, fsck};
pub use query::{QueryHit, QueryReport, QueryRequest, query};
pub use objects::{
    CollectingWarnings, HeddleError, NoopProgress, NoopWarnings, ProgressEvent, ProgressSink,
    TaskId, Warning, WarningSink,
};