// SPDX-License-Identifier: BUSL-1.1
//! Versioned document storage — bitemporal key layout backed by redb.
//!
//! Key: `"{tenant}:{coll}:{doc_id}\x00{system_from_ms:020}"`.
//! Value: `[tag:u8][valid_from_ms:i64 LE][valid_until_ms:i64 LE][body...]`
//! where `tag = 0x00` (live), `0xFF` (tombstone), `0xFE` (GDPR erased).
//!
//! `\x00` is the reserved version separator; callers must reject doc_ids
//! that contain a NUL byte.
pub use ;
pub use ;