heddle_core/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2//! Embeddable Heddle facade scaffolding.
3
4pub mod context;
5pub mod fsck;
6pub mod query;
7
8pub use context::{ExecutionContext, ExecutionContextBuilder, Verbosity};
9pub use fsck::{FsckError, FsckOptions, FsckReport, fsck};
10pub use query::{QueryHit, QueryReport, QueryRequest, query};
11pub use objects::{
12 CollectingWarnings, HeddleError, NoopProgress, NoopWarnings, ProgressEvent, ProgressSink,
13 TaskId, Warning, WarningSink,
14};