ckg-storage 1.3.1

CozoDB-backed storage layer for ckg (per-repo + registry DBs).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Storage layer over CozoDB (RocksDB engine). Phase 02 implements all ops.

pub mod cozo_compat;
pub mod manifest;
pub mod queries;
pub mod repo_lock;
pub mod schema;
pub mod store;

pub use manifest::{Manifest, with_lock as manifest_with_lock};
pub use repo_lock::with_repo_lock;
pub use store::{RegistryStorage, Storage};