mongreldb-cluster 0.63.1

MongrelDB cluster runtime: node identity, meta group, tablets, placement (Stages 2-3).
Documentation
//! MongrelDB cluster runtime (spec section 6.6, Stages 2-3).
//!
//! Owns the node runtime, meta control-plane group, tablet descriptors,
//! placement, split/merge, rebalancing, distributed transactions, cluster
//! backup, and rolling-upgrade coordination.

pub mod bootstrap;
pub mod cluster_backup;
pub mod ddl;
pub mod dist_ssi;
pub mod dist_txn;
pub mod gateway;
pub mod global_constraints;
pub mod merge;
pub mod meta;
pub mod multi_region;
pub mod network;
pub mod node;
pub mod placement;
pub mod routing;
pub mod runtime;
pub mod split;
pub mod tablet;