udb 0.4.15

Universal Data Broker — a Rust gRPC broker over multiple databases (Postgres, MySQL, SQLite, MongoDB, ClickHouse, Cassandra, MSSQL, Redis, Qdrant, S3, Neo4j, …) with per-tenant RLS, 2PC, sagas, and CDC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Live tests for native non-auth services.
//!
//! Keep these outside `auth_service/tests` so test ownership follows the service
//! boundary rather than the historical shared auth Postgres harness.

mod asset_image_live;
mod asset_live;
mod asset_trigger_live;
#[cfg(feature = "http-client")]
mod asset_vector_live;
mod native_events_live;
mod storage_live;
#[cfg(feature = "http-client")]
mod storage_object_live;
mod support;
mod webrtc_live;