2026-06-08 19:33:49 -04:00
|
|
|
mod error;
|
|
|
|
|
mod index;
|
|
|
|
|
mod schema;
|
2026-08-05 11:21:25 -04:00
|
|
|
pub mod subtitles;
|
|
|
|
|
pub use tantivy::indexer::IndexWriter;
|
2026-08-12 14:11:47 -04:00
|
|
|
pub use tantivy::schema::Field;
|
|
|
|
|
pub use tantivy::schema::document::OwnedValue;
|
2026-06-08 19:33:49 -04:00
|
|
|
|
|
|
|
|
pub use error::{Result, SearchError};
|
2026-08-12 14:11:47 -04:00
|
|
|
pub use index::{SearchIndex, SearchIndexBuilder, to_json};
|
|
|
|
|
pub use schema::Schema;
|