aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 175c37f15458857c9c65054932bf3a2f18929b90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::similar_names)]

pub mod actions;
pub mod api;
pub mod cipherstring;
pub mod dirs;
mod error;
pub mod identity;
pub mod pinentry;
mod prelude;