Skip to main content

reifydb_codec/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4#[cfg(not(target_arch = "wasm32"))]
5pub mod cdc;
6pub mod constraint;
7pub mod error;
8pub mod extern_c;
9pub mod frame;
10#[cfg(feature = "json")]
11pub mod json;
12pub mod key;
13pub mod primitive;
14pub mod reader;
15pub mod row;
16pub mod tag;
17pub mod typeinfo;
18pub mod value;