sonic-core 0.1.1

Fast, lightweight and schema-less search backend.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Sonic
//
// Fast, lightweight and schema-less search backend
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
// License: Mozilla Public License v2.0 (MPL v2.0)

mod stopwords;

pub mod ranges;
#[cfg(feature = "stemming")]
mod stemming;
mod token;

pub use self::token::*;