diff options
| author | soryu <soryu@soryu.co> | 2025-12-23 14:43:23 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2025-12-23 14:47:18 +0000 |
| commit | 555061b179b8ec034cb70f9a2dd6c823ced0f637 (patch) | |
| tree | 0545b4395dab6d957884d8d36bf15b8da529dc1f /makima/Cargo.toml | |
| parent | a32dc56d2e5447ef8988cb98b8686476cc94e70c (diff) | |
| download | soryu-555061b179b8ec034cb70f9a2dd6c823ced0f637.tar.gz soryu-555061b179b8ec034cb70f9a2dd6c823ced0f637.zip | |
Add file body and initial tool call system
Diffstat (limited to 'makima/Cargo.toml')
| -rw-r--r-- | makima/Cargo.toml | 6 |
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" |
