This is TheDeltaLab's fork of lancedb/lancedb.
We maintain only the Rust core and Node.js bindings. Python, Java, and related components have been removed.
Upstream
| Upstream repo | https://github.com/lancedb/lancedb |
| Based on upstream version | 0.27.2-beta.1 |
See [workspace.metadata.upstream] in Cargo.toml for the current upstream version tag.
Project layout
rust/lancedb Rust core library (crate: lancedb)
nodejs/ Node.js / TypeScript bindings (napi-rs)
Getting started
Rust
[dependencies] lancedb = "0.1.0"
cargo check --features remote --tests --examples
cargo test --features remote --testsNode.js
cd nodejs npm install npm run build npm test
Upstream tracking
When upstream lancedb/lancedb releases a new version:
- Review the release changelog / PRs.
- Cherry-pick or merge changes that touch
rust/andnodejs/. - Ignore changes isolated to
python/,java/, or their docs. - Update
[workspace.metadata.upstream].versioninCargo.toml.
License
Apache-2.0 — same as upstream.