From b97da9675132f46a119ae4849fa41d8c44cd3d5b Mon Sep 17 00:00:00 2001 From: Raphael Darley Date: Thu, 31 Jul 2025 12:17:21 +0100 Subject: [PATCH] remove json feature from reqwest --- helix-db/Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/helix-db/Cargo.toml b/helix-db/Cargo.toml index 144ad587..b475d9b7 100644 --- a/helix-db/Cargo.toml +++ b/helix-db/Cargo.toml @@ -32,10 +32,7 @@ pest = { version = "2.7", optional = true } pest_derive = { version = "2.7", optional = true } # Embedding dependencies -reqwest = { version = "0.12.15", features = [ - "json", - "blocking", -], optional = true } +reqwest = { version = "0.12.15", features = ["blocking"], optional = true } url = { version = "2.5", optional = true } tokio-util = { version = "0.7.15", features = ["compat"] } axum = "0.8.4"