mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 14:49:57 +00:00
Exposes `storage_options` in LanceDB. This is provided for Python async, Node `lancedb`, and Node `vectordb` (and Rust of course). Python synchronous is omitted because it's not compatible with the PyArrow filesystems we use there currently. In the future, we will move the sync API to wrap the async one, and then it will get support for `storage_options`. 1. Fixes #1168 2. Closes #1165 3. Closes #1082 4. Closes #439 5. Closes #897 6. Closes #642 7. Closes #281 8. Closes #114 9. Closes #990 10. Deprecating `awsCredentials` and `awsRegion`. Users are encouraged to use `storageOptions` instead.
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[workspace]
|
|
members = ["rust/ffi/node", "rust/lancedb", "nodejs", "python"]
|
|
# Python package needs to be built by maturin.
|
|
exclude = ["python"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
authors = ["LanceDB Devs <dev@lancedb.com>"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/lancedb/lancedb"
|
|
description = "Serverless, low-latency vector database for AI applications"
|
|
keywords = ["lancedb", "lance", "database", "vector", "search"]
|
|
categories = ["database-implementations"]
|
|
|
|
[workspace.dependencies]
|
|
lance = { "version" = "=0.10.10", "features" = ["dynamodb"] }
|
|
lance-index = { "version" = "=0.10.10" }
|
|
lance-linalg = { "version" = "=0.10.10" }
|
|
lance-testing = { "version" = "=0.10.10" }
|
|
# Note that this one does not include pyarrow
|
|
arrow = { version = "50.0", optional = false }
|
|
arrow-array = "50.0"
|
|
arrow-data = "50.0"
|
|
arrow-ipc = "50.0"
|
|
arrow-ord = "50.0"
|
|
arrow-schema = "50.0"
|
|
arrow-arith = "50.0"
|
|
arrow-cast = "50.0"
|
|
async-trait = "0"
|
|
chrono = "0.4.35"
|
|
half = { "version" = "=2.3.1", default-features = false, features = [
|
|
"num-traits",
|
|
] }
|
|
futures = "0"
|
|
log = "0.4"
|
|
object_store = "0.9.0"
|
|
pin-project = "1.0.7"
|
|
snafu = "0.7.4"
|
|
url = "2"
|
|
num-traits = "0.2"
|
|
regex = "1.10"
|
|
lazy_static = "1"
|