dictx-index 0.1.0

Index builder and binary entry storage for DictX.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod builder;
mod cjk;
mod pack;
mod schema;

pub use builder::*;
pub use cjk::*;
pub use pack::*;
pub use schema::*;

pub fn tantivy_error(err: tantivy::TantivyError) -> dictx_core::DictxError {
    dictx_core::DictxError::Tantivy(err.to_string())
}