From 432af7593df1cc94b3e5d7fa7b24851b4bfde6a1 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Tue, 23 Jun 2026 14:16:19 -0700 Subject: [PATCH] build(rust-ocr): workspace deps for async (tokio, pyo3-async-runtimes, async reqwest) --- litellm-rust/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/litellm-rust/Cargo.toml b/litellm-rust/Cargo.toml index fdc5f5efde1..22ca11d16d2 100644 --- a/litellm-rust/Cargo.toml +++ b/litellm-rust/Cargo.toml @@ -15,7 +15,9 @@ repository = "https://github.com/BerriAI/litellm" litellm-core = { path = "crates/core" } litellm-providers = { path = "crates/providers" } pyo3 = "0.23.5" -reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] } +pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime"] } +reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "2.0" +tokio = { version = "1", features = ["rt-multi-thread"] }