forked from delta-incubator/delta-kernel-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (43 loc) · 1.22 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
[package]
name = "delta_kernel_ffi"
description = "Provide C FFI bindings for the delta_kernel crate"
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
version.workspace = true
build = "build.rs"
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[dependencies]
tracing = "0.1"
url = "2"
delta_kernel = { path = "../kernel", default-features = false, features = [
"developer-visibility",
] }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.3.1" }
# used if we use the default engine to be able to move arrow data into the c-ffi format
arrow-schema = { version = "53.0", default-features = false, features = [
"ffi",
], optional = true }
arrow-data = { version = "53.0", default-features = false, features = [
"ffi",
], optional = true }
arrow-array = { version = "53.0", default-features = false, optional = true }
[build-dependencies]
cbindgen = "0.27.0"
libc = "0.2.158"
[dev-dependencies]
rand = "0.8.5"
trybuild = "1.0"
[features]
default = ["default-engine"]
default-engine = [
"delta_kernel/default-engine",
"arrow-array",
"arrow-data",
"arrow-schema",
]
sync-engine = ["delta_kernel/sync-engine"]
developer-visibility = []