mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-24 13:59:58 +00:00
31 lines
824 B
TOML
31 lines
824 B
TOML
[package]
|
|
name = "lancedb-python"
|
|
version = "0.4.10"
|
|
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 = "50.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"] }
|
|
|
|
# Prevent dynamic linking of lzma, which comes from datafusion
|
|
lzma-sys = { version = "*", features = ["static"] }
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = { version = "0.20.3", features = [
|
|
"extension-module",
|
|
"abi3-py38",
|
|
] }
|