atuin/atuin-client/src/lib.rs
Ellie Huxtable dcd77749dd
Add history deletion (#791)
* Drop events. I'd still like to do them, but differently

* Start adding delete api stuff

* Set mailmap

* Delete delete delete

* Fix tests

* Make clippy happy
2023-03-20 09:26:54 +00:00

17 lines
274 B
Rust

#![forbid(unsafe_code)]
#[macro_use]
extern crate log;
#[cfg(feature = "sync")]
pub mod api_client;
#[cfg(feature = "sync")]
pub mod encryption;
#[cfg(feature = "sync")]
pub mod sync;
pub mod database;
pub mod history;
pub mod import;
pub mod ordering;
pub mod settings;