reifydb_codec/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Every byte layout that crosses a ReifyDB boundary: the type-tag namespace, the self-describing
5//! value codec, the RBCF columnar frame format, the row storage codec, the key codec and the extern-C
6//! cells. Both halves live here and share one tag scheme, so no consumer hand-rolls these bytes.
7
8pub mod constraint;
9pub mod error;
10pub mod extern_c;
11pub mod frame;
12#[cfg(feature = "json")]
13pub mod json;
14pub mod key;
15pub mod primitive;
16pub mod reader;
17pub mod row;
18pub mod tag;
19pub mod typeinfo;
20pub mod value;