mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-04 19:02:58 +00:00
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "lancedb-node"
|
|
version = "0.15.1-beta.3"
|
|
description = "Serverless, low-latency vector database for AI applications"
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
exclude = ["index.node"]
|
|
rust-version = "1.75"
|
|
|
|
[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 }
|
|
lancedb = { path = "../../lancedb" }
|
|
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"
|
|
|
|
# Prevent dynamic linking of lzma, which comes from datafusion
|
|
lzma-sys = { version = "*", features = ["static"] }
|