-
Notifications
You must be signed in to change notification settings - Fork 233
/
Cargo.toml
69 lines (65 loc) · 1.62 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "pylance"
version = "0.21.0"
edition = "2021"
authors = ["Lance Devs <dev@lancedb.com>"]
rust-version = "1.65"
exclude = ["python/lance/conftest.py"]
publish = false
[lib]
name = "lance"
crate-type = ["cdylib"]
[dependencies]
arrow = { version = "53.2", features = ["pyarrow"] }
arrow-array = "53.2"
arrow-data = "53.2"
arrow-schema = "53.2"
arrow-select = "53.2"
object_store = "0.10.1"
async-trait = "0.1"
chrono = "0.4.31"
env_logger = "0.10"
futures = "0.3"
half = { version = "2.3", default-features = false, features = [
"num-traits",
"std",
] }
lance = { path = "../rust/lance", features = [
"tensorflow",
"dynamodb",
"substrait",
] }
lance-arrow = { path = "../rust/lance-arrow" }
lance-core = { path = "../rust/lance-core" }
lance-datagen = { path = "../rust/lance-datagen", optional = true }
lance-encoding = { path = "../rust/lance-encoding" }
lance-file = { path = "../rust/lance-file" }
lance-index = { path = "../rust/lance-index" }
lance-io = { path = "../rust/lance-io" }
lance-linalg = { path = "../rust/lance-linalg" }
lance-table = { path = "../rust/lance-table" }
lazy_static = "1"
log = "0.4"
prost = "0.13.2"
pyo3 = { version = "0.22", features = [
"extension-module",
"abi3-py39",
"gil-refs",
"py-clone",
] }
tokio = { version = "1.23", features = ["rt-multi-thread"] }
uuid = "1.3.0"
serde_json = "1"
serde = "1.0.197"
serde_yaml = "0.9.34"
snafu = "0.7.4"
tracing-chrome = "0.7.1"
tracing-subscriber = "0.3.17"
tracing = "0.1.37"
url = "2.5.0"
bytes = "1.4"
[features]
datagen = ["lance-datagen"]
fp16kernels = ["lance/fp16kernels"]
[build-dependencies]
prost-build = "0.11"