reddb-io-client 1.20.0

Official Rust client for RedDB — embedded engine, gRPC, HTTP, and RedWire transports behind one connection-string API. Also hosts the workspace-internal connector + REPL used by the `red` and `red_client` binaries.
Documentation
1
2
3
4
5
6
7
8
//! Compatibility re-exports for the historical connector path.
//!
//! RedWire implementation and connection policy live in [`crate::redwire`].
//! This module keeps `reddb_client::connector::redwire::*` imports compiling
//! without carrying a second client or error model.

pub use crate::error::{ClientError as RedWireError, Result};
pub use crate::redwire::{Auth, ConnectOptions, RedWireClient};