| Crates.io | llm-governance-database |
| lib.rs | llm-governance-database |
| version | 1.0.0 |
| created_at | 2025-11-17 00:49:34.298356+00 |
| updated_at | 2025-11-17 00:49:34.298356+00 |
| description | Database connection pooling and utilities for LLM Governance Dashboard with TimescaleDB support |
| homepage | https://github.com/globalbusinessadvisors/llm-governance-dashboard |
| repository | https://github.com/globalbusinessadvisors/llm-governance-dashboard |
| max_upload_size | |
| id | 1936084 |
| size | 150,924 |
Database connection pooling and utilities for LLM Governance Dashboard with TimescaleDB support.
Add this to your Cargo.toml:
[dependencies]
llm-governance-database = "1.0.0"
use llm_governance_database::create_pool;
#[tokio::main]
async fn main() {
let pool = create_pool("postgresql://localhost/mydb")
.await
.expect("Failed to create pool");
}
Licensed under Apache 2.0.