reddb-io-server 1.2.0

RedDB server-side engine: storage, runtime, replication, MCP, AI, and the gRPC/HTTP/RedWire/PG-wire dispatchers. Re-exported by the umbrella `reddb` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Re-export of the canonical RedWire frame types from `reddb-wire`.
//!
//! The frame layout, `Frame` struct, `MessageKind` enum, `Flags`,
//! and the size constants are owned by the `reddb-wire` crate (see
//! `crates/reddb-wire/src/redwire/frame.rs`). This file keeps the
//! `crate::wire::redwire::frame::…` import paths working for
//! server-side dispatch (auth, session, listener) and for the
//! `reddb::wire::redwire::Frame` re-export consumed by tests and
//! drivers.

pub use reddb_wire::redwire::frame::*;