//! tidal-server — standalone gRPC cluster server for tidaldb. //! //! Wraps the embedded `tidaldb` engine in an axum HTTP surface plus a //! tonic gRPC cluster layer (via `tidal-net`) for multi-shard deployments. //! Carries a Dockerfile + k8s manifests under `tidal/docker/` for standalone //! deployment; embedding consumers use the `tidaldb` library directly and do //! NOT need this server. //! //! Status: M8 Phase 8 and 10 marked PARTIAL; see `tidal/AGENTS.md` § Known //! Gaps for G1/G2/G3. /// Public modules exposed for integration testing. /// /// The binary (`main.rs`) imports from this lib crate rather than declaring /// the modules directly, so integration tests in `tests/` can access them. pub mod cluster; pub mod config; pub mod dto; pub mod error; pub mod router; pub mod scatter_gather; pub mod state;