food-tracker/Cargo.toml

15 lines
400 B
TOML
Raw Normal View History

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-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"] }