mirror of
https://github.com/flibusta-apps/book_bot.git
synced 2025-12-06 07:25:36 +01:00
37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
name = "book_bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] }
|
|
reqwest = { version = "0.12.4", features = ["json", "stream"] }
|
|
serde = { version = "1.0.198", features = ["derive"] }
|
|
serde_json = "1.0.116"
|
|
teloxide = { version = "0.12.2", features = ["macros", "webhooks-axum", "cache-me", "throttle"] }
|
|
url = "2.5.0"
|
|
ctrlc = { version = "3.4.4", features = ["termination"] }
|
|
strum = "0.26.2"
|
|
strum_macros = "0.26.2"
|
|
futures = "0.3.30"
|
|
base64 = "0.22.0"
|
|
tokio-util = { version = "0.7.10", features = ["compat"] }
|
|
textwrap = "0.16.1"
|
|
regex = "1.10.4"
|
|
chrono = "0.4.38"
|
|
dateparser = "0.2.1"
|
|
sentry = { version = "0.32.3", features = ["debug-images"] }
|
|
moka = { version = "0.12.7", features = ["future"] }
|
|
axum = "0.7.5"
|
|
smallvec = { version = "1.13.2", features = ["serde"] }
|
|
smartstring = { version = "1.0.1", features = ["serde"] }
|
|
tokio-stream = "0.1.15"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
|
|
tower = "0.4.13"
|
|
tower-http = { version = "0.5.2", features = ["trace"] }
|
|
once_cell = "1.19.0"
|
|
axum-prometheus = "0.6.1"
|