2024-04-11 12:09:39 +00:00
|
|
|
[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
|
2024-04-11 13:38:46 +00:00
|
|
|
exclude = ["data"]
|
2024-04-11 12:09:39 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-11 13:38:46 +00:00
|
|
|
axum = "0.7.5"
|
|
|
|
axum-macros = "0.4.1"
|
|
|
|
gdal = { version = "0.16.0", features = ["bindgen"] }
|
2024-04-11 18:10:53 +00:00
|
|
|
moka = { version = "0.12.5", features = ["future"] }
|
2024-04-11 13:38:46 +00:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
serde_json = "1.0.115"
|
|
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
2024-04-15 21:17:14 +00:00
|
|
|
tower = "0.4.13"
|
2024-04-15 21:44:57 +00:00
|
|
|
tower-http = { version = "0.5.2", features = ["fs", "trace"]}
|
2024-04-11 13:38:46 +00:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = "0.3.18"
|