-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 963 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (31 loc) · 963 Bytes
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
# This file should be copied to /home/yuvalif/lancedb/c/Cargo.toml
[package]
name = "lancedb-c"
version = "0.30.0"
edition = "2021"
description = "C bindings for LanceDB"
license = "Apache-2.0"
repository = "https://github.com/yuvalif/lancedb-c"
keywords = ["database", "vector", "search", "c", "ffi"]
categories = ["database", "api-bindings"]
rust-version = "1.91.0"
[lib]
name = "lancedb"
crate-type = ["cdylib", "staticlib"]
[dependencies]
tokio = { version = "1.23", features = ["rt-multi-thread"] }
libc = "0.2"
lancedb = { version = "0.30.0", features = ["remote"] }
lance = "=7.0.0"
lance-namespace = "=7.0.0"
arrow-array = "58.0"
arrow-data = "58.0"
arrow-schema = "58.0"
datafusion-common = "53"
datafusion-expr = "53"
datafusion-functions-json = "0.53"
datafusion-functions = { version = "53", default-features = false, features = ["string_expressions"] }
datafusion-functions-nested = "53"
datafusion-physical-expr = "53"
futures = "0"
chrono = "0"