aboutsummaryrefslogtreecommitdiff
path: root/argparse/examples/structure.rs
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2020-01-07 15:17:16 +0000
committerDaniel Mueller <deso@posteo.net>2020-01-08 09:21:15 -0800
commit0b673f2f0184efa0111c4978a2a4159598dee7a6 (patch)
tree4e420e4f6359d1f258ab3fd285de56ad81a13760 /argparse/examples/structure.rs
parent8482335491aa55b0458ffedccd1fc110f092e38a (diff)
downloadnitrocli-0b673f2f0184efa0111c4978a2a4159598dee7a6.tar.gz
nitrocli-0b673f2f0184efa0111c4978a2a4159598dee7a6.tar.bz2
Remove argparse dependency
As we have replaced argparse with structopt, we no longer need it as a dependency. This patch removes the dependency from Cargo.toml and deletes the included copy. Delete subrepo argparse/:argparse
Diffstat (limited to 'argparse/examples/structure.rs')
-rw-r--r--argparse/examples/structure.rs38
1 files changed, 0 insertions, 38 deletions
diff --git a/argparse/examples/structure.rs b/argparse/examples/structure.rs
deleted file mode 100644
index 59b9345..0000000
--- a/argparse/examples/structure.rs
+++ /dev/null
@@ -1,38 +0,0 @@
-extern crate argparse;
-
-use std::process::exit;
-
-use argparse::{ArgumentParser, StoreTrue, Store};
-
-struct Options {
- verbose: bool,
- name: String,
-}
-
-fn main() {
- let mut options = Options {
- verbose: false,
- name: "World".to_string(),
- };
- {
- let mut ap = ArgumentParser::new();
- ap.set_description("Greet somebody.");
- ap.refer(&mut options.verbose)
- .add_option(&["-v", "--verbose"], StoreTrue,
- "Be verbose");
- ap.refer(&mut options.name)
- .add_option(&["--name"], Store,
- "Name for the greeting");
- match ap.parse_args() {
- Ok(()) => {}
- Err(x) => {
- exit(x);
- }
- }
- }
-
- if options.verbose {
- println!("name is {}", options.name);
- }
- println!("Hello {}!", options.name);
-}