1 2 3 4 5 6 7 8 9 10 11
//! Storage layer over CozoDB (RocksDB engine). Phase 02 implements all ops. 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};