-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.16 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
[package]
name = "lance_duckdb_ffi"
version = "0.1.0"
edition = "2021"
[lib]
name = "lance_duckdb_ffi"
crate-type = ["staticlib"]
path = "rust/lib.rs"
[profile.release]
lto = "thin"
strip = true
panic = "abort"
[profile.dev]
panic = "abort"
[dependencies]
# Lance and Arrow dependencies - using compatible versions
lance = { version = "4.0.0", default-features = false, features = ["aws", "azure", "gcp", "oss", "huggingface"] }
lance-arrow = "4.0.0"
lance-core = "4.0.0"
lance-index = "4.0.0"
lance-linalg = "4.0.0"
lance-namespace = "4.0.0"
lance-namespace-impls = { version = "4.0.0", features = ["rest"] }
lance-table = "4.0.0"
arrow = { version = "57.0.0", features = ["ffi"] }
arrow-array = "57.0.0"
arrow-schema = "57.0.0"
datafusion = "52.1.0"
datafusion-common = "52.1.0"
datafusion-expr = "52.1.0"
datafusion-functions = "52.1.0"
datafusion-sql = "52.1.0"
anyhow = "1.0"
async-trait = "0.1"
bzip2-sys = { version = "0.1.13", features = ["static"] }
chrono = "0.4"
futures = "0.3"
roaring = "0.11.3"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
snafu = "0.8.6"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
rand = "0.8"