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.16.0-beta.0"
|
|
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 = "52.1", features = ["pyarrow"] }
|
|
lancedb = { path = "../rust/lancedb" }
|
|
env_logger.workspace = true
|
|
pyo3 = { version = "0.21", features = ["extension-module", "abi3-py38", "gil-refs"] }
|
|
# Using this fork for now: https://github.com/awestlake87/pyo3-asyncio/issues/119
|
|
# pyo3-asyncio = { version = "0.20", features = ["attributes", "tokio-runtime"] }
|
|
pyo3-asyncio-0-21 = { version = "0.21.0", features = ["attributes", "tokio-runtime"] }
|
|
|
|
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]
|
|
default = ["remote"]
|
|
fp16kernels = ["lancedb/fp16kernels"]
|
|
remote = ["lancedb/remote"]
|