-
-
Notifications
You must be signed in to change notification settings - Fork 0
deps(rust): bump the rust-dependencies group with 11 updates #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -86,15 +86,15 @@ harness = false | |||||
|
|
||||||
| [dependencies] | ||||||
| # Python Bindings (optional) | ||||||
| pyo3 = { version = "0.24.1", features = ["extension-module"], optional = true } | ||||||
| pyo3 = { version = "0.27.2", features = ["extension-module"], optional = true } | ||||||
|
|
||||||
| # Serialization | ||||||
| serde = { version = "1.0", features = ["derive"] } | ||||||
| serde_json = "1.0" | ||||||
| serde_bytes = "0.11" | ||||||
|
|
||||||
| # Binary serialization (faster than JSON for embeddings) | ||||||
| bincode = "1.3" | ||||||
| bincode = "3.0" | ||||||
|
||||||
| bincode = "3.0" | |
| bincode = "1.3" |
Copilot
AI
Jan 2, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reqwest dependency is being updated from 0.12 to 0.13. According to the changelog in the PR description, version 0.13.0 introduced several breaking changes:
- rustls is now the default TLS backend instead of native-tls
- rustls crypto provider defaults to aws-lc instead of ring
- query and form are now crate features, disabled by default
- Long-deprecated methods have been removed
Since this codebase uses reqwest for HTTP client operations (embedding API calls, Qdrant health checks), you should verify that:
- The TLS backend change doesn't affect connectivity
- Any query/form usage is covered by enabling the appropriate features if needed
- No deprecated methods are being used that were removed in 0.13.0
| reqwest = { version = "0.13", features = ["json"] } | |
| reqwest = { version = "0.13", features = ["json", "query", "form"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pyo3 dependency is being updated from 0.24.1 to 0.27.2, which is a major version jump (two minor versions). According to the changelog, version 0.27.0 introduced several breaking changes including:
Since this is an optional dependency (used for Python bindings), you should verify that:
The changelog also mentions fixes for crashes with dict subclassing on PyPy/GraalPy, which are positive changes.