aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: ef69e4949dcfa8754283dd5fb3bccf6fe3da0c57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![allow(clippy::missing_const_for_fn)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::similar_names)]
#![allow(clippy::single_match)]
#![allow(clippy::too_many_arguments)]

pub mod actions;
pub mod api;
pub mod cipherstring;
pub mod config;
pub mod db;
pub mod dirs;
pub mod edit;
pub mod error;
pub mod identity;
pub mod locked;
pub mod pinentry;
mod prelude;
pub mod protocol;
pub mod pwgen;