llm-governance-database

Crates.iollm-governance-database
lib.rsllm-governance-database
version1.0.0
created_at2025-11-17 00:49:34.298356+00
updated_at2025-11-17 00:49:34.298356+00
descriptionDatabase connection pooling and utilities for LLM Governance Dashboard with TimescaleDB support
homepagehttps://github.com/globalbusinessadvisors/llm-governance-dashboard
repositoryhttps://github.com/globalbusinessadvisors/llm-governance-dashboard
max_upload_size
id1936084
size150,924
GBA (globalbusinessadvisors)

documentation

https://docs.rs/llm-governance-database

README

llm-governance-database

Database connection pooling and utilities for LLM Governance Dashboard with TimescaleDB support.

Features

  • Connection Pooling: Optimized PostgreSQL connection pool management
  • TimescaleDB Support: Time-series database utilities
  • Migration Helpers: Database migration utilities

Usage

Add this to your Cargo.toml:

[dependencies]
llm-governance-database = "1.0.0"

Example

use llm_governance_database::create_pool;

#[tokio::main]
async fn main() {
    let pool = create_pool("postgresql://localhost/mydb")
        .await
        .expect("Failed to create pool");
}

License

Licensed under Apache 2.0.

Commit count: 0

cargo fmt