recoco_utils/lib.rs
1// ReCoco is a Rust-only fork of CocoIndex, by [CocoIndex](https://CocoIndex)
2// Original code from CocoIndex is copyrighted by CocoIndex
3// SPDX-FileCopyrightText: 2025-2026 CocoIndex (upstream)
4// SPDX-FileContributor: CocoIndex Contributors
5//
6// All modifications from the upstream for ReCoco are copyrighted by Knitli Inc.
7// SPDX-FileCopyrightText: 2026 Knitli Inc. (ReCoco)
8// SPDX-FileContributor: Adam Poulemanos <adam@knit.li>
9//
10// Both the upstream CocoIndex code and the ReCoco modifications are licensed under the Apache-2.0 License.
11// SPDX-License-Identifier: Apache-2.0
12
13pub mod batching;
14pub mod concur_control;
15pub mod db;
16pub mod deser;
17pub mod error;
18pub mod fingerprint;
19pub mod immutable;
20pub mod retryable;
21
22pub mod prelude;
23
24#[cfg(feature = "bytes_decode")]
25pub mod bytes_decode;
26#[cfg(feature = "reqwest")]
27pub mod http;
28#[cfg(feature = "sqlx")]
29pub mod str_sanitize;
30#[cfg(feature = "yaml")]
31pub mod yaml_ser;