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
12
// SPDX-FileCopyrightText: 2026 Slatian
//
// SPDX-License-Identifier: LGPL-3.0-only

mod detect;
mod detection_iterator;
mod lingua_language_to_whatlang_language;

pub use detect::detect_chinese_or_japanese;
pub use detect::detect_top_n_languages;
pub use detection_iterator::DetectionIterator;
pub use lingua_language_to_whatlang_language::lingua_language_to_whatlang_language;