blob: a542ec1e1cad14ee35379644ce265011cc215064 [file] [log] [blame]
Matthew Maurer32e76692020-06-02 11:15:15 -07001//! How to completely remove version.
2
3use structopt::clap::AppSettings;
4use structopt::StructOpt;
5
6#[derive(StructOpt, Debug)]
7#[structopt(
8 name = "no_version",
9 no_version,
10 global_settings = &[AppSettings::DisableVersion]
11)]
12struct Opt {}
13
14fn main() {
15 let opt = Opt::from_args();
16 println!("{:?}", opt);
17}