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
31 lines (30 loc) · 822 Bytes
/
Cargo.toml
File metadata and controls
31 lines (30 loc) · 822 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
[workspace]
members = [
"acceptance",
"benchmarks",
"derive-macros",
"ffi",
"kernel",
"kernel/examples/*",
"test-utils",
"feature-tests",
"mem-test",
"uc-client", # WIP: this is an experimental UC client for catalog-managed table work
"uc-catalog", # WIP: this is an experimental UC catalog implementation
]
# 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"