forked from lance-format/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
95 lines (90 loc) · 2.47 KB
/
Cargo.toml
File metadata and controls
95 lines (90 loc) · 2.47 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[package]
name = "pylance"
version = "1.0.0-beta.2"
edition = "2021"
authors = ["Lance Devs <dev@lance.org>"]
rust-version = "1.80"
exclude = ["python/lance/conftest.py"]
publish = false
[lib]
name = "lance"
crate-type = ["cdylib"]
[dependencies]
arrow = { version = "56.1", features = ["pyarrow"] }
arrow-array = "56.1"
arrow-data = "56.1"
arrow-schema = "56.1"
object_store = "0.12.3"
datafusion = "50.0.0"
datafusion-ffi = "50.0.0"
datafusion-common = "50.0.0"
async-trait = "0.1"
chrono = "0.4.41"
env_logger = "0.11.7"
futures = "0.3"
half = { version = "2.5", 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", features = [
"tokenizer-lindera",
"tokenizer-jieba",
] }
lance-io = { path = "../rust/lance-io" }
lance-linalg = { path = "../rust/lance-linalg" }
lance-namespace = { path = "../rust/lance-namespace" }
lance-namespace-impls = { path = "../rust/lance-namespace-impls" }
lance-table = { path = "../rust/lance-table" }
lance-datafusion = { path = "../rust/lance-datafusion" }
libc = "0.2.176"
log = "0.4"
prost = "0.13"
prost-types = "0.13"
pyo3 = { version = "0.25", features = [
"extension-module",
"abi3-py39",
"py-clone",
"chrono",
] }
pythonize = "0.25"
tokio = { version = "1.23", features = ["rt-multi-thread"] }
uuid = "1.3.0"
regex = "1"
roaring = "0.10.1"
serde_json = "1"
serde = "1.0.197"
serde_yaml = "0.9.34"
snafu = "0.8"
tracing-chrome = "0.7.1"
tracing-subscriber = "0.3.17"
tracing = { version = "0.1" }
url = "2.5.0"
bytes = "1.4"
[features]
default = ["rest", "rest-adapter"]
datagen = ["lance-datagen"]
fp16kernels = ["lance/fp16kernels"]
rest = ["lance-namespace-impls/rest"]
rest-adapter = ["lance-namespace-impls/rest-adapter"]
[profile.ci]
debug = "line-tables-only"
inherits = "dev"
incremental = false
# This rule applies to every package except workspace members (dependencies
# such as `arrow` and `tokio`). It disables debug info and related features on
# dependencies so their binaries stay smaller, improving cache reuse.
[profile.ci.package."*"]
debug = false
debug-assertions = false
strip = "debuginfo"
incremental = false