* add test demonstrating problem * add a reordered fuzzy-search mode that presents shorter matches first, rather than using strict chronological ordering. * fix warnings, refactor interface to minspan slightly
16 lines
239 B
Rust
16 lines
239 B
Rust
#![forbid(unsafe_code)]
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
pub mod api_client;
|
|
pub mod database;
|
|
pub mod encryption;
|
|
pub mod history;
|
|
pub mod import;
|
|
pub mod ordering;
|
|
pub mod settings;
|
|
pub mod sync;
|