Crate vex_persist

Crate vex_persist 

Source
Expand description

§VEX Persistence

Storage backends for agent state, context, and audit logs.

Supports:

  • In-memory (for testing)
  • SQLite (for single-node)
  • PostgreSQL (for production)

Re-exports§

pub use agent_store::AgentStore;
pub use audit_store::AuditStore;
pub use backend::StorageBackend;
pub use backend::StorageError;
pub use backend::StorageExt;
pub use context_store::ContextStore;

Modules§

agent_store
Agent storage
api_key_store
API Key storage and validation
audit_store
Audit log storage with Merkle verification
backend
Storage backend trait and error types
context_store
Context packet storage
queue
sqlite
SQLite backend implementation