simi-flow 0.1.3

A production-grade similarity and text-analysis engine: 8 algorithms plus intent-aware routing for matching, dedup, spam, and bot protection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Common imports for the `simi` crate.
//!
//! Core modules should `use crate::prelude::*;` instead of importing
//! individual std types.

pub use std::{
    boxed::Box,
    format,
    string::{String, ToString},
    vec,
    vec::Vec,
};