sonic/util/mod.rs
1// Sonic
2//
3// Fast, lightweight and schema-less search backend
4// Copyright: 2026, Rémi Bardon <remi@remibardon.name>
5// License: Mozilla Public License v2.0 (MPL v2.0)
6
7//! Utility functions.
8//!
9//! Most are internal, but some can be public if it makes the library easier to
10//! use.
11
12pub(crate) mod fmt;
13pub(crate) mod itertools;
14pub mod serde;