//! 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: //! -r, --keyring ... A keyring //! -n, --signatures The number of valid signatures to return success. Default: 1 //! //! ARGS: //! File containing the detached signature. //! File to verify. //! ``` include!("sqv.rs");