agentics-persistence 0.3.0

Database persistence layer for the Agentics challenge platform.
Documentation
#![cfg_attr(
    test,
    allow(
        clippy::arithmetic_side_effects,
        clippy::cast_possible_truncation,
        clippy::cast_possible_wrap,
        clippy::cast_sign_loss,
        clippy::enum_glob_use,
        clippy::expect_used,
        clippy::indexing_slicing,
        clippy::panic,
        clippy::unwrap_used,
        clippy::wildcard_imports,
        reason = "unit tests use direct assertions and fixture indexing for concise failure diagnostics"
    )
)]

mod auth;
mod db;
pub mod repositories;

pub mod pool {
    pub use crate::db::pool::*;
}

pub use repositories::*;