unobtanium-segmenter 0.5.2

A text segmentation toolbox for search applications inspired by charabia and tantivy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-FileCopyrightText: 2026 Slatian
//
// SPDX-License-Identifier: LGPL-3.0-only

//! Things that turn different looking things into same looking things.

mod lowercase;
mod rust_stemmers;

pub use lowercase::NormalizationLowercase;
pub use rust_stemmers::NormalizationRustStemmers;