3 unstable releases
Uses new Rust 2024
| 0.17.2 | Jun 6, 2025 |
|---|---|
| 0.17.1 | Jun 6, 2025 |
| 0.16.1 | May 25, 2025 |
#10 in #act
82 downloads per month
580KB
17K
SLoC
acts-postgres
The acts postgres plugin for acts.
Installation
create config/acts.cfg in current dir
postgres {
database_url: "postgresql://<your connection string>"
}
cargo add acts-store-postgres
Example
use acts::{EngineBuilder, Result};
use acts_store_postgres::PostgresStore;
#[tokio::main]
async fn main() -> Result<()> {
let engine = EngineBuilder::new()
.add_plugin(&PostgresStore)
.build().await?
.start();
Ok(())
}
Dependencies
~34–51MB
~771K SLoC