aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml2
2 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1086dd5..e84889b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,4 +1,9 @@
[[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]