//! A command-line frontend for Sequoia. //! //! # Usage //! //! ```text //! sqv is a command-line OpenPGP signature verification tool. //! //! USAGE: //! sqv [FLAGS] [OPTIONS] --keyring ... //! //! FLAGS: //! -h, --help Prints help information //! --trace Trace execution. //! -V, --version Prints version information //! //! OPTIONS: //! --keyring ... A keyring. Can be given multiple times. //! --not-after Consider signatures created after YYYY-MM-DD as invalid. Default: now //! --not-before Consider signatures created before YYYY-MM-DD as invalid. Default: no constraint //! -n, --signatures The number of valid signatures to return success. Default: 1 //! //! ARGS: //! File containing the detached signature. //! File to verify. //! ``` include!("sqv.rs");