soar-db 0.5.0

Database operations for soar package manager
Documentation
1
2
3
4
5
6
7
8
9
10
//! Repository pattern implementations for database operations.
//!
//! This module provides type-safe database operations using the repository pattern.
//! Each repository handles CRUD operations for a specific domain:
//!
//! - [`CoreRepository`] - Installed package operations
//! - [`MetadataRepository`] - Package metadata queries

pub mod core;
pub mod metadata;