Files
tools/search/src/lib.rs
T

12 lines
309 B
Rust
Raw Normal View History

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;
2026-08-16 15:50:10 -04:00
pub use tantivy;
2026-08-05 11:21:25 -04:00
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;