Skip to main content

mongreldb_types/
lib.rs

1//! MongrelDB shared durable and network types.
2//!
3//! This crate sits at the bottom of the dependency graph (spec section 6.10):
4//! every other crate may depend on it, and it depends on nothing first-party.
5//! It owns the common identifiers (section 7), the MVCC timestamp model
6//! (section 8), and the stable cross-language error taxonomy (section 9.7).
7
8pub mod errors;
9pub mod hlc;
10pub mod ids;