Files
minecraft-heatmap/rest-endpoint/Cargo.toml
T
2026-07-20 22:28:25 +09:00

20 lines
620 B
TOML

[package]
name = "minecraft-heatmap-rest-endpoint"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.104"
axum = "0.8.9"
chrono = { version = "0.4.45", features = ["serde"] }
clap = { version = "4.6.2", features = ["derive"] }
indoc = "2.0.7"
itertools = "0.15.0"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
sqlx = { version = "0.9.0", features = ["bigdecimal", "chrono", "postgres", "runtime-tokio"] }
tokio = { version = "1.53.0", features = ["rt-multi-thread"] }
toml = "1.1.3"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }