fts_demo/
lib.rs

1#![warn(missing_docs)]
2// Note: this overwrites the link in the README to point to the rust docs of the fts-demo crate.
3//! [fts_core]: https://docs.rs/fts_core/latest/fts_core/index.html
4//! [fts_server]: https://docs.rs/fts_server/latest/fts_server/index.html
5//! [fts_solver]: https://docs.rs/fts_solver/latest/fts_solver/index.html
6//! [fts_demo]: https://docs.rs/fts_demo/latest/fts_demo/index.html
7#![doc = include_str!("../README.md")]
8mod config;
9/// Database operations and connection management
10pub mod db;
11mod impls;
12
13pub use config::Config;
14
15// This manages our database setup/migrations
16mod embedded {
17    use refinery::embed_migrations;
18    embed_migrations!("./sql");
19}
20
21mod datetime;
22pub use datetime::DateTime;