exoware-sql 2026.4.1

SQL engine backed by the Exoware API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Local E2E: ephemeral RocksDB dir + simulator on an ephemeral port (no env vars).

use exoware_sdk::StoreClient;

pub async fn local_store_client() -> (tempfile::TempDir, tokio::task::JoinHandle<()>, StoreClient) {
    let dir = tempfile::tempdir().expect("tempdir");
    let (jh, url) = exoware_simulator::spawn_for_test(dir.path())
        .await
        .expect("spawn simulator");
    let client = StoreClient::with_split_urls(&url, &url, &url, &url);
    (dir, jh, client)
}