From 0623150f2e8663c3e56f8ba060f54fba27bdf8aa Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 20 Apr 2025 14:42:18 -0400 Subject: [PATCH] Added dependencies for postgres --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 95a4a3a..99053cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,5 +10,7 @@ serde_json = { version = "1.0.140" } tokio = { version = "1.44.2", features = ["rt-multi-thread"] } tracing-subscriber = "0.3.19" uuid = { version = "1.16.0", features = ["v4", "serde"] } +sqlx = { version = "0.8.3", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] } +dotenvy = { version = "0.15.7" } icarus_meta = { git = "ssh://git@git.kundeng.us/phoenix/icarus_meta.git", tag = "v0.1.30" } icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.4.3" }