mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-24 22:09:58 +00:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "lancedb-python"
|
|
version = "0.9.0-beta.8"
|
|
edition.workspace = true
|
|
description = "Python bindings for LanceDB"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
rust-version = "1.75.0"
|
|
|
|
[lib]
|
|
name = "_lancedb"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
arrow = { version = "51.0.0", features = ["pyarrow"] }
|
|
lancedb = { path = "../rust/lancedb" }
|
|
env_logger = "0.10"
|
|
pyo3 = { version = "0.20", features = ["extension-module", "abi3-py38"] }
|
|
pyo3-asyncio = { version = "0.20", features = ["attributes", "tokio-runtime"] }
|
|
base64ct = "=1.6.0" # workaround for https://github.com/RustCrypto/formats/issues/1684
|
|
chrono = "=0.4.39"
|
|
|
|
# Prevent dynamic linking of lzma, which comes from datafusion
|
|
lzma-sys = { version = "*", features = ["static"] }
|
|
pin-project = "1.1.5"
|
|
futures.workspace = true
|
|
tokio = { version = "1.36.0", features = ["sync"] }
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = { version = "0.20.3", features = [
|
|
"extension-module",
|
|
"abi3-py38",
|
|
] }
|
|
|
|
[features]
|
|
fp16kernels = ["lancedb/fp16kernels"]
|