2025-10-18 20:49:21 +02:00
|
|
|
[package]
|
|
|
|
|
name = "task_counter"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
askama = "0.14.0"
|
|
|
|
|
axum = "0.8.6"
|
2025-10-20 14:34:24 +02:00
|
|
|
chrono = "0.4.42"
|
2025-10-19 17:50:07 +02:00
|
|
|
parking_lot = "0.12.5"
|
2025-10-18 20:54:23 +02:00
|
|
|
rusqlite = { version = "0.37.0", features = ["bundled"] }
|
2025-10-18 20:49:21 +02:00
|
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
2025-10-19 15:05:12 +02:00
|
|
|
tower-http = { version = "0.6.6", features = ["trace"] }
|
|
|
|
|
tower-request-id = "0.3.0"
|
|
|
|
|
tracing = "0.1.41"
|
|
|
|
|
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
|