mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-27 07:09:57 +00:00
28 lines
665 B
TOML
28 lines
665 B
TOML
[package]
|
|
name = "lancedb-jni"
|
|
description = "JNI bindings for LanceDB"
|
|
# TODO modify lancedb/Cargo.toml for version and dependencies
|
|
version = "0.10.0"
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
lancedb = { path = "../../../rust/lancedb" }
|
|
lance = { workspace = true }
|
|
arrow = { workspace = true, features = ["ffi"] }
|
|
arrow-schema.workspace = true
|
|
tokio = "1.46"
|
|
jni = "0.21.1"
|
|
snafu.workspace = true
|
|
lazy_static.workspace = true
|
|
serde = { version = "^1" }
|
|
serde_json = { version = "1" }
|