Thanks to visit codestin.com
Credit goes to lib.rs

3 unstable releases

Uses new Rust 2024

0.17.2 Jun 7, 2025
0.17.1 Jun 6, 2025
0.16.1 May 25, 2025

#14 in #state-store

Codestin Search App Codestin Search App

105 downloads per month

Apache-2.0

500KB
14K SLoC

acts-sqlite

The acts state package plugin for acts.

Installation

create config/acts.cfg in current dir

state {
    uri: "redis://<your connection path>"
}
cargo add acts-package-state

Example

use acts::EngineBuilder;
use acts_package_state::StatePackagePlugin;

#[tokio::main]
async fn main() {
    let engine = EngineBuilder::new()
        .add_plugin(&StatePackagePlugin)
        .build()
        .start();
}

Dependencies

~29–47MB
~674K SLoC