// Note: this overwrites the link in the README to point to the rust docs of the fts-sqlite crate.
//! [fts_core]: https://docs.rs/fts_core/latest/fts_core/index.html
//! [fts_axum]: https://docs.rs/fts_axum/latest/fts_axum/index.html
//! [fts_solver]: https://docs.rs/fts_solver/latest/fts_solver/index.html
//! [fts_sqlite]: https://docs.rs/fts_sqlite/latest/fts_sqlite/index.html
/**
* The various solver implementations.
*/
pub use *;
/**
* The core data types the solver implementations operate on.
*/
pub use *;
/// Utilities for testing and CLI interface to the solver
/// Utilities for converting the derived QP to standard file formats
// For reproducibility, we need explicitly ordered semantics in our collections.
// Accordingly, we swap out the stdlib collections for those provided by `indexmap`.
// Since we're swapping out these types already, we can benefit from a hash function
// that is optimized for small collections.
pub type HashSet<T> = IndexSet;