#![forbid(unsafe_code)]
#![deny(
clippy::all,
clippy::style,
clippy::perf,
clippy::complexity,
clippy::correctness,
clippy::unwrap_used,
rust_2018_idioms
)]
#![allow(
clippy::missing_const_for_fn,
clippy::use_self,
clippy::needless_borrows_for_generic_args
)]
#![cfg_attr(feature = "nightly", feature(error_generic_member_access))]
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;
#[macro_use]
pub mod util;
#[macro_use]
pub mod errors;
pub mod armor;
pub mod base64_decoder;
pub mod base64_reader;
pub mod composed;
pub mod crypto;
pub mod line_writer;
pub mod normalize_lines;
pub mod packet;
pub mod ser;
pub mod types;
#[allow(unused_imports)]
pub use self::composed::key::*;
pub use self::composed::*;
pub use self::packet::Signature;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");