exoware-simulator 2026.7.1

Simulate the Exoware API.
Documentation
1
2
3
4
5
6
7
8
9
//! In-process store API simulator (naive RocksDB).

pub mod rocks;
pub mod server;

pub use exoware_server::{connect_stack, AppState, Ingest, Log, Prune, Query, Sequence};
pub use rocks::{RocksConfig, RocksStore, RocksWritePipelineConfig};
pub use rocksdb;
pub use server::{open_temp, run, CMD, RUN_CMD};