dcd77749dd
* 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
17 lines
274 B
Rust
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;
|