summaryrefslogtreecommitdiff
path: root/makima/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'makima/Cargo.toml')
-rw-r--r--makima/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/makima/Cargo.toml b/makima/Cargo.toml
index 35c5db8..5cf1f65 100644
--- a/makima/Cargo.toml
+++ b/makima/Cargo.toml
@@ -40,3 +40,9 @@ anyhow = "1.0"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "chrono", "json"] }
chrono = { version = "0.4", features = ["serde"] }
+
+# HTTP client for LLM API
+reqwest = { version = "0.12", features = ["json"] }
+
+# Lazy statics
+once_cell = "1.19"