1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-
-
-
-
-
-
-
-
-
-
-
|
[package]
name = "rsstg"
version = "0.1.1"
authors = ["arcade"]
edition = "2018"
[dependencies]
config = "*"
http = "*"
#native-tls = "*"
#postgres = { version = "*", features = ["with-serde_json-1"] }
#tokio-postgres = "*"
#postgres-native-tls = "*"
serde = { version = "1.0", features = ["derive"] }
serde_json = "*"
#serde_postgres = "*"
futures = "*"
telegram-bot = "*"
#tbot = "*"
tokio = { version = "0.2", features = ["macros" ] }
#tokio-timer = "*"
futures-util = "*"
sqlx = { version = "*", features = [ "postgres", "tls", "runtime-async-std-native-tls", "chrono" ] }
#async-std = { version = "*", features = [ "attributes" ] }
regex = "*"
rss = { version = "*", features = [ "from_url" ] }
chrono = "*"
|