-
Notifications
You must be signed in to change notification settings - Fork 585
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (90 loc) · 2.45 KB
/
Cargo.toml
File metadata and controls
96 lines (90 loc) · 2.45 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
96
[package]
name = "pylance"
version = "4.0.0-beta.12"
edition = "2024"
authors = ["Lance Devs <dev@lance.org>"]
license = "Apache-2.0"
rust-version = "1.91"
exclude = ["python/lance/conftest.py"]
publish = false
[lib]
name = "lance"
crate-type = ["cdylib"]
[dependencies]
arrow = { version = "57.0.0", features = ["pyarrow"] }
arrow-array = "57.0.0"
arrow-data = "57.0.0"
arrow-schema = "57.0.0"
object_store = "0.12.4"
datafusion = "52.1.0"
datafusion-ffi = "52.1.0"
datafusion-common = "52.1.0"
async-trait = "0.1"
chrono = "0.4.42"
env_logger = "0.11.7"
futures = "0.3"
half = { version = "2.5", default-features = false, features = [
"num-traits",
"std",
] }
lance = { path = "../rust/lance", features = [
"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", features = ["rest", "rest-adapter"] }
lance-table = { path = "../rust/lance-table" }
lance-datafusion = { path = "../rust/lance-datafusion" }
libc = "0.2.176"
log = "0.4"
prost = "0.14.1"
prost-types = "0.14.1"
pyo3 = { version = "0.26", features = [
"extension-module",
"abi3-py39",
"py-clone",
"chrono",
] }
pythonize = "0.26"
tokio = { version = "1.48", features = ["rt-multi-thread"] }
uuid = "1.3.0"
regex = "1"
roaring = "0.11"
serde_json = "1"
serde = "1.0.197"
serde_yaml = "0.9.34"
snafu = "0.9"
tracing-chrome = "0.7.1"
tracing-subscriber = "0.3.17"
tracing = { version = "0.1" }
url = "2.5.0"
bytes = "1.4"
[features]
default = []
datagen = ["lance-datagen"]
fp16kernels = ["lance/fp16kernels"]
[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
[lints.clippy]
disallowed_macros = "deny"