gpg_tui/
lib.rs

1//! A terminal user interface for managing GnuPG keys.
2#![warn(missing_docs, clippy::unwrap_used)]
3
4pub mod app;
5pub mod args;
6pub mod config;
7pub mod gpg;
8pub mod term;
9pub mod widget;
10
11/// Minimum required version of the GPGME library.
12pub const GPGME_REQUIRED_VERSION: &str = "1.7.0";