diff options
author | tilpner | 2019-05-20 17:34:04 +0200 |
---|---|---|
committer | tilpner | 2019-05-20 17:34:04 +0200 |
commit | 7ac788fd448c68982c4c77bf0288ef941248addd (patch) | |
tree | 7d650a2f208e833bc36271f488622918d7d71597 /src | |
parent | 70cb3885b414fa9f895019e2e329e9f683ee0f18 (diff) | |
download | rpb-s3-7ac788fd448c68982c4c77bf0288ef941248addd.tar.gz rpb-s3-7ac788fd448c68982c4c77bf0288ef941248addd.tar.xz rpb-s3-7ac788fd448c68982c4c77bf0288ef941248addd.zip |
Remove unnecessary structopt attribute
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 6fb7cc8..7810a1d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,7 @@ use itertools; use rand; use config::Config; -use structopt::{ StructOpt, clap::ArgGroup }; +use structopt::StructOpt; use mime_guess::{ Mime, guess_mime_type_opt }; @@ -32,7 +32,6 @@ mod base62; const ONE_TRUE_THEME: &'static str = "Solarized (dark)"; #[derive(StructOpt, Debug, Clone, Serialize, Deserialize)] -#[structopt(raw(group = r#"ArgGroup::with_name("processor")"#))] struct Opt { #[structopt(short = "C", long = "config-file", parse(from_os_str))] config_file: Option<PathBuf>, |