atuin/atuin-client/src/lib.rs
Mark Wotton 2024884f49
Reordered fuzzy search (#179)
* 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
2021-09-09 11:46:46 +01:00

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;