atuin_client/lib.rs
1#![forbid(unsafe_code)]
2
3#[macro_use]
4extern crate log;
5
6#[cfg(feature = "sync")]
7pub mod api_client;
8#[cfg(feature = "sync")]
9pub mod sync;
10
11pub mod database;
12pub mod encryption;
13pub mod history;
14pub mod import;
15pub mod kv;
16pub mod login;
17pub mod logout;
18pub mod ordering;
19pub mod record;
20pub mod register;
21pub mod secrets;
22pub mod settings;
23pub mod theme;
24
25mod utils;