forked from delta-io/delta-kernel-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (53 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
61 lines (53 loc) · 1.9 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
[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
rust-version.workspace = true
build = "build.rs"
# for cargo-release
[package.metadata.release]
release = false
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[dependencies]
tracing = "0.1"
tracing-core = { version = "0.1", optional = true }
tracing-subscriber = { version = "0.3", optional = true, features = [ "json" ] }
url = "2"
delta_kernel = { path = "../kernel", default-features = false, features = [
"internal-api",
] }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.20.0" }
uc-client = { path = "../uc-client", optional = true }
uc-catalog = { path = "../uc-catalog", optional = true }
[build-dependencies]
cbindgen = "0.29.2"
libc = "0.2.175"
[dev-dependencies]
paste = "1.0"
rand = "0.9.2"
serde = "1.0.219"
serde_json = "1.0.142"
test_utils = { path = "../test-utils" }
tokio = { version = "1.47" }
trybuild = "1.0"
tempfile = "3.20.0"
itertools = "0.14.0"
[features]
default = ["default-engine-rustls"]
default-engine-native-tls = ["delta_kernel/default-engine-native-tls", "default-engine-base"]
default-engine-rustls = ["delta_kernel/default-engine-rustls", "default-engine-base"]
catalog-managed = ["delta_kernel/catalog-managed"]
uc-catalog = [ "dep:uc-catalog", "dep:uc-client" ]
# This is an 'internal' feature flag which has all the shared bits from default-engine-native-tls and
# default-engine-rustls. There is a check in kernel/lib.rs to ensure you have enabled one of
# default-engine-native-tls or default-engine-rustls, so default-engine-base will not work by itself
default-engine-base = ["delta_kernel/default-engine-base", "delta_kernel/arrow"]
tracing = [ "tracing-core", "tracing-subscriber" ]
internal-api = []
test-ffi = []