summaryrefslogtreecommitdiff
path: root/makima/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'makima/Cargo.toml')
-rw-r--r--makima/Cargo.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/makima/Cargo.toml b/makima/Cargo.toml
index 3368a6e..35c5db8 100644
--- a/makima/Cargo.toml
+++ b/makima/Cargo.toml
@@ -27,12 +27,16 @@ futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bytes = "1.0"
-uuid = { version = "1.0", features = ["v4"] }
+uuid = { version = "1.0", features = ["v4", "serde"] }
# OpenAPI
-utoipa = { version = "5", features = ["axum_extras"] }
+utoipa = { version = "5", features = ["axum_extras", "uuid", "chrono"] }
utoipa-swagger-ui = { version = "9", features = ["axum"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
+
+# Database
+sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "chrono", "json"] }
+chrono = { version = "0.4", features = ["serde"] }