aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTeddy Wing2018-04-12 21:03:39 +0200
committerTeddy Wing2018-04-12 21:03:39 +0200
commit8b57140e627a229cb7057b8e7a048d6cf3e811eb (patch)
tree6352de33d6ddd1e3bb1e3e2ea5020c1ede5e4bf3 /Cargo.toml
parent83905e4db4bb934025e6656a5573239cea086bae (diff)
downloadmeetup-find-events-rss-8b57140e627a229cb7057b8e7a048d6cf3e811eb.tar.bz2
Add a "meetup" library crate to communicate with the Meetup API
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 242064c..8c130c7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,3 +3,9 @@ name = "meetup-find-events-rss"
version = "0.0.1"
[dependencies]
+meetup = { path = "meetup" }
+
+[workspace]
+members = [
+ "meetup",
+]