aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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"