forked from lancedb/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 779 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "pylance"
version = "0.6.1"
edition = "2021"
authors = ["Lance Devs <[email protected]>"]
rust-version = "1.65"
exclude = ["python/lance/conftest.py"]
[lib]
name = "lance"
crate-type = ["cdylib"]
[dependencies]
arrow = { version = "43.0.0", features = ["pyarrow"] }
arrow-array = "43.0"
arrow-data = "43.0"
arrow-schema = "43.0"
async-trait = "0.1"
chrono = "0.4.23"
env_logger = "0.10"
futures = "0.3"
half = { version = "2.1", default-features = false, features = ["num-traits"] }
lance = { path = "../rust" }
lazy_static = "1"
log = "0.4"
prost = "0.11"
pyo3 = { version = "0.19", features = ["extension-module", "abi3-py38"] }
tokio = { version = "1.23", features = ["rt-multi-thread"] }
uuid = "1.3.0"
serde_json = "1"
[build-dependencies]
prost-build = "0.11"