-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (30 loc) · 888 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 = "Apache-2.0"
homepage = "https://github.com/rust-lang-uz/telegram"
repository = "https://github.com/rust-lang-uz/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.0"
tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }
url = "2.4.1"
crates_io_api = "0.8.2"
uuid = { version = "1.5.0", features = ["v4"] }
serde_json = "1.0.108"
serde = { version = "1.0.192", features = ["derive"] }
octocrab = { version = "0.32.0" }
clap = { version = "4.5.23", features = ["derive"] }
orzklv = { version = "0.1.8", features = ["full"] }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1