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

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