-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (60 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
61 lines (60 loc) · 1.61 KB
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
61
[package]
name = "bot-rs"
version = "0.1.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = "1.0"
reqwest = { version = "0.12", features = ["rustls-tls", "json"] }
serde = { version = "1", features = ["derive"] }
lazy_static = "1.5"
regex = "1.10"
clap = { version = "4.5", features = ["derive"] }
thiserror = "2"
teloxide = { git = "https://github.com/teloxide/teloxide", features = [
"webhooks-axum",
"rustls",
"macros",
] }
log = "0.4"
pretty_env_logger = "0.5"
serde_json = "1.0"
fast_qr = { version = "0.12", features = ["image"] }
mysql_async = "0.35"
async-trait = "0.1.8"
scraper = "0.23"
cached = { version = "0.55", features = ["async"] }
chrono = { version = "0.4" }
dashmap = "6"
image = "0.25"
jieba-rs = "0.7"
cron = "0.15"
tokio-native-tls = "0.3"
x509-parser = "0.17"
toml = "0.8"
sled = "0.34"
urlencoding = "2.1"
reqwest-middleware = "0.4"
reqwest-retry = "0.7"
redis = { version = "0.29", features = ["tokio-comp"] }
ping-server-rs = { git = "https://github.com/jizizr/ping-server-rs" }
async_once = "0.2"
futures = "0.3"
lingua = { version = "1", default-features = false, features = [
"chinese",
"english",
] }
wcloud = { git = "https://github.com/jizizr/wcloud" }
rand = "0.9"
url = "2.5"
mongodb = "3"
bson = { version = "2", features = ["chrono-0_4"] }
serde_repr = "0.1"
anstyle = "1.0"
charts-rs = { version = "0.3", features = ["image-encoder"] }
clap-i18n-richformatter = { git = "https://github.com/jizizr/clap-i18n-richformatter", features = [
"derive",
] }
[profile.release]
lto = true
panic = "abort"