edgecrab-state 0.3.3

Persistence layer: SQLite session DB (FTS5), config manager, memory store, skill store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # edgecrab-state
//!
//! Persistence layer: SQLite session database (FTS5), config manager,
//! memory store, skill store, cron scheduler.

#![deny(clippy::unwrap_used)]
#![cfg_attr(test, allow(clippy::unwrap_used))]

pub mod session_db;

pub use session_db::{
    DailyActivity, InsightsOverview, InsightsReport, ModelBreakdown, PlatformBreakdown,
    SearchResult, SessionDb, SessionExport, SessionRecord, SessionRichSummary, SessionSearchHit,
    SessionStats, SessionSummary, ToolUsage,
};