aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authortilpner2020-05-28 16:42:03 +0200
committertilpner2020-05-28 16:43:47 +0200
commitda07a2ca3a8c5ee97eac179b28dc3d4a064fd026 (patch)
tree40e384ffefd53acfb4aa589961b526e29387fb78 /Cargo.toml
downloadgithub-label-feed-da07a2ca3a8c5ee97eac179b28dc3d4a064fd026.tar.gz
github-label-feed-da07a2ca3a8c5ee97eac179b28dc3d4a064fd026.tar.xz
github-label-feed-da07a2ca3a8c5ee97eac179b28dc3d4a064fd026.zip
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..3a3f747
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "github-label-feed"
+version = "0.1.0"
+authors = ["tilpner <till@hoeppner.ws>"]
+edition = "2018"
+
+[dependencies]
+graphql_client = { version = "0.9", default-features = false, features = [ "log" ] }
+serde = "1.0"
+reqwest = { version = "0.10", features = [ "json" ] }
+structopt = "0.3"
+chrono = "0.4"
+
+futures = "0.3"
+smol = { version = "0.1", features = [ "tokio02" ] }
+futures-retry = "0.5"
+sqlx = { version = "0.3", default-features = false, features = [ "runtime-tokio", "sqlite", "macros" ] }
+
+anyhow = "1.0"
+
+tracing = "0.1"
+tracing-subscriber = "0.2.4"
+
+atom_syndication = "0.9"