From 3643d973844c53c3bed7531da601bdfa5c276111 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Fri, 18 Oct 2024 03:20:29 -0400 Subject: [PATCH] chore(ac-qu-ai-nt-core): add `reqwest` as a dependency because I expect to use it and I'd like to make sure everything works out --- core/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/core/Cargo.toml b/core/Cargo.toml index 0a40cdf..3ca63cf 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -16,6 +16,20 @@ tracing = ["dep:tracing"] [dependencies] llama-cpp-2 = "0.1.82" ocrs = "0.9" +reqwest = { version = "0.12", default-features = false, features = [ + "http2", + + "macos-system-configuration", + "rustls-tls-webpki-roots", + + "json", + "multipart", + + "brotli", + "deflate", + "gzip", + "zstd", +] } rten = "0.13.1" snafu = { workspace = true }