atuin/atuin-client/src/lib.rs

20 lines
294 B
Rust
Raw Permalink Normal View History

#![forbid(unsafe_code)]
#[macro_use]
extern crate log;
#[cfg(feature = "sync")]
pub mod api_client;
#[cfg(feature = "sync")]
pub mod sync;
pub mod database;
2023-08-07 05:06:48 -06:00
pub mod encryption;
pub mod history;
2021-02-13 12:37:00 -07:00
pub mod import;
pub mod kv;
pub mod ordering;
pub mod record;
pub mod secrets;
pub mod settings;