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
|
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.2.21"
authors = ["arcade"]
edition = "2021"
[dependencies]
anyhow = "*"
async-std = { version = "*", features = [ "tokio1" ] }
atom_syndication = { version = "*", features = [ "with-serde" ] }
chrono = "*"
config = { version = "*", default-features = false, features = [ "toml" ] }
futures = "*"
futures-util = "*"
lazy_static = "*"
regex = "*"
reqwest = { version = "^0.11", features = [ "brotli", "socks", "deflate" ]}
rss = { version = "*", features = [ "from_url" ] }
sedregex = "*"
sqlx = { version = "*", features = [ "postgres", "tls", "runtime-async-std-rustls", "chrono" ] }
telegram-bot = { git = "https://github.com/telegram-rs/telegram-bot" }
anyhow = "1.0.86"
async-std = { version = "1.12.0", features = [ "tokio1" ] }
atom_syndication = { version = "0.12.3", features = [ "with-serde" ] }
chrono = "0.4.38"
config = { version = "0.14.0", default-features = false, features = [ "toml" ] }
futures = "0.3.30"
futures-util = "0.3.30"
lazy_static = "1.4.0"
regex = "1.10.5"
reqwest = { version = "0.12.4", features = [ "brotli", "socks", "deflate" ]}
rss = { version = "2.0.8"}
sedregex = "0.2.5"
sqlx = { version = "0.6", features = [ "postgres", "runtime-async-std-rustls", "chrono" ] }
telegram-bot = { git = "https://github.com/telegram-rs/telegram-bot" , rev = "65ad5cfd57" }
#surf = { version = "*", default-features = false, features = [ "middleware-logger", "encoding", "h1-client-rustls" ] }
[profile.release]
lto = true
codegen-units = 1
|