aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: d197fbb3e2a2d8a9c67e7c88a7d12466da40aa77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![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)]

pub mod actions;
pub mod agent;
pub mod api;
pub mod cipherstring;
pub mod config;
pub mod db;
pub mod dirs;
mod error;
pub mod identity;
pub mod locked;
pub mod pinentry;
mod prelude;