mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-06 11:52:57 +00:00
31 lines
888 B
TOML
31 lines
888 B
TOML
[package]
|
|
name = "vectordb-node"
|
|
version = "0.4.7"
|
|
description = "Serverless, low-latency vector database for AI applications"
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
exclude = ["index.node"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
arrow-array = { workspace = true }
|
|
arrow-ipc = { workspace = true }
|
|
arrow-schema = { workspace = true }
|
|
chrono = { workspace = true }
|
|
conv = "0.3.3"
|
|
once_cell = "1"
|
|
futures = "0.3"
|
|
half = { workspace = true }
|
|
lance = { workspace = true }
|
|
lance-index = { workspace = true }
|
|
lance-linalg = { workspace = true }
|
|
vectordb = { path = "../../vectordb" }
|
|
tokio = { version = "1.23", features = ["rt-multi-thread"] }
|
|
neon = {version = "0.10.1", default-features = false, features = ["channel-api", "napi-6", "promise-api", "task-api"] }
|
|
object_store = { workspace = true, features = ["aws"] }
|
|
snafu = { workspace = true }
|
|
async-trait = "0"
|
|
env_logger = "0"
|