Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions helix-db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Copy link
Preview

Copilot AI Jul 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the 'json' feature from reqwest may break existing code that relies on reqwest's built-in JSON serialization/deserialization methods like .json() on requests and responses. Consider adding sonic_rs as an explicit dependency if it's the intended JSON library replacement, or document the migration path for affected code.

Suggested change
reqwest = { version = "0.12.15", features = ["blocking"], optional = true }
reqwest = { version = "0.12.15", features = ["blocking", "json"], optional = true }

Copilot uses AI. Check for mistakes.

url = { version = "2.5", optional = true }
tokio-util = { version = "0.7.15", features = ["compat"] }
axum = "0.8.4"
Expand Down
Loading