-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (29 loc) · 864 Bytes
/
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
[package]
name = "bot"
version = "0.1.0"
edition = "2021"
license = "GPL-3"
homepage = "https://github.com/xinux-org/telegram"
repository = "https://github.com/xinux-org/telegram"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
teloxide = { version = "0.13", features = [
"macros",
"webhooks",
"webhooks-axum",
] }
log = "0.4"
pretty_env_logger = "0.5"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
url = "2.4.1"
uuid = { version = "1.5.0", features = ["v4"] }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
orzklv = { version = "0.1.8", features = ["full"] }
libxinux = { version = "0.2.3", features = ["pkgs-async"] }
clap = { version = "4.5.20", features = ["derive"] }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1