-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (36 loc) · 1009 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (36 loc) · 1009 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
[package]
name = "weathernote-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
# Web Framework
axum = { version = "0.7", features = ["macros"] }
tokio = { version = "1", features = ["full"] }
tower = { version = "0.4", features = ["limit", "buffer"] }
tower-http = { version = "0.5", features = ["cors", "trace", "compression-gzip"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP Client
reqwest = { version = "0.11", features = ["json"] }
# Redis
redis = { version = "0.24", features = ["tokio-comp", "connection-manager"] }
# Environment Variables
dotenvy = "0.15"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Hashing (for rate limiting keys)
blake3 = "1.5"
# Background Jobs
tokio-cron-scheduler = "0.10"
# Error Handling
anyhow = "1.0"
thiserror = "1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true