mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 06:39:57 +00:00
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "lancedb-python"
|
|
version = "0.18.1-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 = "53.2", features = ["pyarrow"] }
|
|
lancedb = { path = "../rust/lancedb", default-features = false }
|
|
env_logger.workspace = true
|
|
pyo3 = { version = "0.22.2", features = [
|
|
"extension-module",
|
|
"abi3-py39",
|
|
"gil-refs"
|
|
] }
|
|
pyo3-async-runtimes = { version = "0.22", features = ["attributes", "tokio-runtime"] }
|
|
pin-project = "1.1.5"
|
|
futures.workspace = true
|
|
tokio = { version = "1.40", features = ["sync"] }
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = { version = "0.20.3", features = [
|
|
"extension-module",
|
|
"abi3-py39",
|
|
] }
|
|
|
|
[features]
|
|
default = ["default-tls", "remote"]
|
|
fp16kernels = ["lancedb/fp16kernels"]
|
|
remote = ["lancedb/remote"]
|
|
# TLS
|
|
default-tls = ["lancedb/default-tls"]
|
|
native-tls = ["lancedb/native-tls"]
|
|
rustls-tls = ["lancedb/rustls-tls"]
|