Skip to main content

dictx_index/
lib.rs

1mod builder;
2mod cjk;
3mod pack;
4mod schema;
5
6pub use builder::*;
7pub use cjk::*;
8pub use pack::*;
9pub use schema::*;
10
11pub fn tantivy_error(err: tantivy::TantivyError) -> dictx_core::DictxError {
12    dictx_core::DictxError::Tantivy(err.to_string())
13}