-
Notifications
You must be signed in to change notification settings - Fork 190
/
Cargo.toml
60 lines (53 loc) · 1.23 KB
/
Cargo.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "rssbot"
version = "2.0.0-alpha.12"
authors = ["iovxw <[email protected]>"]
edition = "2021"
[features]
default = ["rustls"]
# enable this to set a subscription limit
hosted-by-iovxw = ["reqwest/trust-dns"]
native-tls = [
"tbot/default",
"hyper-proxy/default",
"reqwest/default",
"reqwest/native-tls-vendored",
"reqwest/native-tls-alpn",
]
rustls = [
"tbot/rustls",
"hyper-proxy/rustls",
"reqwest/rustls-tls",
]
[build-dependencies]
ctl10n = "0.2.0"
[dependencies]
lazy_static = "1.4"
once_cell = "1.18"
anyhow = "1.0"
structopt = "0.3"
futures = "0.3"
tokio = { version = "1.32", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
tokio-stream = "0.1"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.9"
quick-xml = { version = "0.23", features = ["encoding", "escape-html"] }
chrono = "0.4"
pinyin = "0.10"
either = "1.9"
atomicwrites = "0.4"
[dependencies.tbot]
version = "0.6"
git = "https://gitlab.com/SnejUgal/tbot.git"
default-features = false
features = ["proxy"]
[dependencies.hyper-proxy]
version = "0.9"
default-features = false
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["gzip", "json"]