From db64f8c98045b0b96e53720776479fc90365fb29 Mon Sep 17 00:00:00 2001 From: LJ Date: Tue, 18 Mar 2025 21:17:59 -0700 Subject: [PATCH] Remove unnecessary dependency: `openssl` --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c562a3d06..3849ad8fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,10 +44,12 @@ async-lock = "3.4.0" hex = "0.4.3" pythonize = "0.23.0" schemars = "0.8.22" -openssl = { version = "0.10.71", features = ["vendored"] } console-subscriber = "0.4.1" env_logger = "0.11.7" -reqwest = { version = "0.12.13", features = ["json"] } +reqwest = { version = "0.12.13", default_features = false, features = [ + "json", + "rustls-tls", +] } async-openai = "0.28.0" tree-sitter = "0.25.3" tree-sitter-language = "0.1.5"