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
|
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
|
-
+
-
+
|
[package]
name = "rsstg"
version = "0.1.19"
version = "0.2.0"
authors = ["arcade"]
edition = "2018"
[dependencies]
anyhow = "*"
atom_syndication = { version = "*", features = [ "with-serde" ] }
chrono = "*"
config = "*"
futures = "*"
futures-util = "*"
lazy_static = "*"
regex = "*"
reqwest = { version = "*", features = [ "brotli", "gzip", "deflate" ]}
#reqwest = "~0.10"
rss = { version = "*", features = [ "from_url" ] }
sedregex = "*"
sqlx = { version = "*", features = [ "postgres", "tls", "runtime-tokio-native-tls", "chrono" ] }
#telegram-bot = "*"
telegram-bot = { git = "https://github.com/telegram-rs/telegram-bot" }
tokio = { version = "1.2", features = [ "macros", "net", "rt-multi-thread", "time" ] }
[profile.release]
lto = true
|