api-server/Cargo.toml
Frank Villaro-Dixon 61259dc4fb API: handle multi pts
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-04-19 13:28:40 +02:00

22 lines
655 B
TOML

[package]
name = "api-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = ["data"]
[dependencies]
axum = "0.7.5"
axum-macros = "0.4.1"
gdal = { version = "0.16.0", features = ["bindgen"] }
moka = { version = "0.12.5", features = ["future"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde_qs = { version = "0.13.0", features = ["axum"] }
tokio = { version = "1.37.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["fs", "trace"]}
tracing = "0.1.40"
tracing-subscriber = "0.3.18"