diff options
| author | Fuwn <[email protected]> | 2021-03-29 22:58:47 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-29 22:58:47 -0700 |
| commit | beda30d9e2c1e33b9ba1dc84f44ee7c3eb43fd50 (patch) | |
| tree | 2c5ce6ba59fec743febbafd77be0aa30cf4b95e6 /src/cli.rs | |
| parent | format: Refactor CLI, use pure `clap` instead of StructOpt (diff) | |
| download | whirl-beda30d9e2c1e33b9ba1dc84f44ee7c3eb43fd50.tar.xz whirl-beda30d9e2c1e33b9ba1dc84f44ee7c3eb43fd50.zip | |
format: Fix a few Clippy warnings
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,4 @@ -use structopt::StructOpt; -use structopt::clap::{Shell, App, AppSettings, SubCommand, Arg}; +use structopt::clap::{App, AppSettings, SubCommand, Arg}; pub fn cli<'b, 'a>() -> App<'a, 'b> { App::new(env!("CARGO_PKG_NAME")) |