summaryrefslogtreecommitdiffstats
path: root/atuin-client/src/lib.rs
blob: 3f12153af643b14e7041afaf99608045301b23cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![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 kv;
pub mod ordering;
pub mod record;
pub mod settings;