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
32 lines (31 loc) · 945 Bytes
/
Cargo.toml
File metadata and controls
32 lines (31 loc) · 945 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
[workspace]
members = [
"acceptance",
"benchmarks",
"derive-macros",
"ffi",
"kernel",
"kernel/examples/*",
"test-utils",
"feature-tests",
"mem-test",
"unity-catalog-delta-rest-client", # WIP: this is an experimental UC client for catalog-managed table work
"delta-kernel-unity-catalog", # WIP: this is an experimental UC catalog implementation
"unity-catalog-delta-client-api", # WIP: transport-agnostic UC client API traits
]
# note that in addition to the members above, the workspace includes examples:
# - inspect-table
# - read-table-changes
# - read-table-multi-threaded
# - read-table-single-threaded
# - write-table
resolver = "2"
[workspace.package]
edition = "2021"
homepage = "https://delta.io"
keywords = ["deltalake", "delta", "datalake"]
license = "Apache-2.0"
repository = "https://github.com/delta-io/delta-kernel-rs"
readme = "README.md"
rust-version = "1.85"
version = "0.20.0"