Skip to main content

uni_store/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2024-2026 Dragonscale Team
3
4pub mod backend;
5pub mod cloud;
6pub mod compaction;
7pub mod fork;
8pub mod runtime;
9pub mod storage;
10pub mod store_utils;
11pub mod snapshot {
12    pub mod manager;
13}
14
15pub use backend::StorageBackend;
16#[cfg(feature = "lance-backend")]
17pub use backend::lance::LanceDbBackend;
18pub use backend::types::VectorQueryOpts;
19pub use compaction::{CompactionStats, CompactionStatus};
20pub use runtime::context::QueryContext;
21pub use runtime::property_manager::PropertyManager;
22pub use runtime::writer::{ForkPoint, Writer};
23pub use snapshot::manager::SnapshotManager;
24pub use storage::manager::collect_l0_label_candidates;
25
26/// loom/shuttle model-checking harness for the OCC commit core. Compiled only
27/// under `--features loom` / `--features shuttle`; see `runtime/sync.rs`.
28#[cfg(any(feature = "loom", feature = "shuttle"))]
29pub mod occ_loom_model;