Skip to main content

reifydb_core/util/encoding/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Generic byte-layout helpers shared by the storage tier, CDC, replication, and the diagnostic formatter.
5//!
6//! `binary` provides plain serialise and deserialise routines and `format` exposes a pluggable `Formatter` trait used
7//! by tools and tests to render keys and values in a human-readable form. The order-preserving key codec itself lives
8//! in `reifydb-codec` and is re-exported from `crate::key` as `keycode`.
9
10pub mod binary;
11pub mod format;