blob: 3a3f7470e599dc5347f4ea7d54ea378d291d3f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
|