19 lines
555 B
TOML
19 lines
555 B
TOML
[package]
|
|
name = "openlayerhub"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
async-trait = "0.1.86"
|
|
axum = { version = "0.8.1", features = ["json"] }
|
|
diesel = { version = "2.2.7", features = ["postgres", "r2d2", "serde_json"] }
|
|
dotenvy = "0.15.7"
|
|
r2d2 = "0.8.10"
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
serde_json = "1.0.138"
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
tower = "0.5.2"
|
|
utoipa = { version = "5.3.1", features = ["axum_extras"] }
|
|
utoipa-swagger-ui = { version = "9.0.0", features = ["axum"] }
|