-
Notifications
You must be signed in to change notification settings - Fork 0
deps(core): align kv-lance pins with lance-graph #423 (lance 4→6, lancedb 0.27→0.29, arrow 57→58) #28
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
deps(core): align kv-lance pins with lance-graph #423 (lance 4→6, lancedb 0.27→0.29, arrow 57→58) #28
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 |
|---|---|---|
|
|
@@ -107,11 +107,11 @@ surrealdb-types = { workspace = true } | |
| vart.workspace = true | ||
|
|
||
| # External KV stores | ||
| lance = { version = "=4.0.0", optional = true } | ||
| lance-index = { version = "=4.0.0", optional = true } | ||
| lancedb = { version = "=0.27.2", optional = true } | ||
| arrow-array = { version = "57", optional = true } | ||
| arrow-schema = { version = "57", optional = true } | ||
| lance = { version = "=6.0.0", optional = true } | ||
| lance-index = { version = "=6.0.0", optional = true } | ||
| lancedb = { version = "=0.29.0", optional = true } | ||
| arrow-array = { version = "58", optional = true } | ||
| arrow-schema = { version = "58", optional = true } | ||
|
Comment on lines
+110
to
+114
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update Lines 110-114 move the 🤖 Prompt for AI Agents |
||
| rocksdb = { workspace = true, optional = true } | ||
| tikv = { workspace = true, optional = true } | ||
|
|
||
|
|
||
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.
With
Cargo.locktracked, changing these exact dependency requirements without updating the lockfile leaves the workspace inconsistent: the lockfile still containslance/lance-index4.0.0,lancedb0.27.2, and Arrow 57.3.1 entries. Any locked build or CI job that enablessurrealdb-core/kv-lancewill have to update the lockfile before it can resolve the new=6.0.0/=0.29.0requirements, so this change should include the correspondingCargo.lockchanges.Useful? React with 👍 / 👎.