ckg_storage/lib.rs
1//! Storage layer over CozoDB (RocksDB engine). Phase 02 implements all ops.
2
3pub mod cozo_compat;
4pub mod manifest;
5pub mod queries;
6pub mod repo_lock;
7pub mod schema;
8pub mod store;
9
10pub use manifest::{Manifest, with_lock as manifest_with_lock};
11pub use repo_lock::with_repo_lock;
12pub use store::{RegistryStorage, Storage};