Skip to content
Merged
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
6 changes: 3 additions & 3 deletions surrealdb/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ surrealdb-types = { workspace = true }
vart.workspace = true

# External KV stores
lance = { version = "=6.0.0", optional = true }
lance-index = { version = "=6.0.0", optional = true }
lancedb = { version = "=0.29.0", optional = true }
lance = { version = "=7.0.0", optional = true }
lance-index = { version = "=7.0.0", optional = true }
lancedb = { version = "=0.30.0", optional = true }
Comment on lines +110 to +112

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Update Cargo.lock with the bumped Lance pins

When the kv-lance feature is enabled, these exact =7.0.0 / =0.30.0 requirements no longer match the checked-in lockfile, which still records lance and lance-index at 6.0.0 and lancedb at 0.29.0. Any reproducible build or CI path using --locked for this feature will fail before compiling because Cargo is not allowed to rewrite Cargo.lock; the manifest bump needs the corresponding lockfile update in the same change.

Useful? React with 👍 / 👎.

arrow-array = { version = "58", optional = true }
arrow-schema = { version = "58", optional = true }
rocksdb = { workspace = true, optional = true }
Expand Down