-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (39 loc) · 975 Bytes
/
Cargo.toml
File metadata and controls
53 lines (39 loc) · 975 Bytes
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
[package]
name = "taxi-monitoring-bot"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Telegram bot
teloxide = { version = "0.12", features = ["macros", "webhooks-axum"] }
axum = "0.7"
# HTTP client
reqwest = { version = "0.11", features = ["json"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Database
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "postgres", "sqlite", "chrono"] }
# Scheduler
tokio-cron-scheduler = "0.10"
# Environment variables
dotenvy = "0.15"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Environment parsing
envy = "0.4"
# URL handling
url = "2.5"
# Time
chrono = { version = "0.4", features = ["serde"] }
# State management
dashmap = "5.5"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1