From a96763889060a2450a135acaf34e0e462960d571 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Thu, 12 Apr 2018 21:53:24 +0200 Subject: Cargo.toml: Add 'getopts' For command line argument parsing. --- Cargo.lock | 8 ++++++++ Cargo.toml | 2 ++ 2 files changed, 10 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 1086dd5..e84889b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,3 +1,8 @@ +[[package]] +name = "getopts" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "meetup" version = "0.0.1" @@ -6,6 +11,9 @@ version = "0.0.1" name = "meetup-find-events-rss" version = "0.0.1" dependencies = [ + "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", "meetup 0.0.1", ] +[metadata] +"checksum getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "b900c08c1939860ce8b54dc6a89e26e00c04c380fd0e09796799bd7f12861e05" diff --git a/Cargo.toml b/Cargo.toml index 8c130c7..0c582d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,8 @@ name = "meetup-find-events-rss" version = "0.0.1" [dependencies] +getopts = "0.2" + meetup = { path = "meetup" } [workspace] -- cgit v1.2.3