sequoia-sq 1.4.0

Command-line frontends for Sequoia
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Command-line parser for `sq inspect`.

use clap::Parser;

#[derive(Parser, Debug)]
#[clap(
    name = "version",
    about = "Detailed version and output version information",
    long_about =
"Detailed version and output version information

With no further options, this command lists the version of `sq`, the \
version of the underlying OpenPGP implementation `sequoia-openpgp`, \
and which cryptographic library is used.
",
)]
pub struct Command {
}