-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (90 loc) · 3.03 KB
/
Copy pathCargo.toml
File metadata and controls
101 lines (90 loc) · 3.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
[workspace]
members = [
"crates/*",
"cpp",
"python",
"benchmark/tpch",
]
resolver = "2"
[workspace.package]
version = "0.5.0-dev"
edition = "2024"
license = "Apache-2.0"
rust-version = "1.91.1"
keywords = ["apachehudi", "hudi", "datalake", "arrow"]
readme = "README.md"
description = "The native Rust implementation for Apache Hudi"
homepage = "https://github.com/apache/hudi-rs"
repository = "https://github.com/apache/hudi-rs"
[workspace.dependencies]
# arrow
arrow = { version = "57" }
arrow-arith = { version = "57" }
arrow-array = { version = "57" }
arrow-buffer = { version = "57" }
arrow-cast = { version = "57" }
arrow-ipc = { version = "57" }
arrow-json = { version = "57" }
arrow-ord = { version = "57" }
arrow-row = { version = "57" }
arrow-schema = { version = "57", features = ["serde"] }
arrow-select = { version = "57" }
object_store = { version = "0.12", features = ["aws", "azure", "gcp"] }
parquet = { version = "57", features = ["async", "object_store", "variant_experimental"] }
# avro
apache-avro = { version = "0.21", features = ["derive"] }
apache-avro-derive = { version = "0.21" }
# datafusion
datafusion = { version = "52" }
datafusion-expr = { version = "52" }
datafusion-common = { version = "52" }
datafusion-physical-expr = { version = "52" }
datafusion-ffi = { version = "52" }
# serde
percent-encoding = { version = "2" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
# "stdlib"
thiserror = { version = "2" }
bytes = { version = "1" }
chrono = { version = "0.4" }
chrono-tz = { version = "0.10" }
lazy_static = { version = "1" }
log = { version = "0.4" }
log-once = { version = "0.4" }
num-traits = { version = "0.2" }
once_cell = { version = "1" }
paste = { version = "1" }
strum = { version = "0.28", features = ["derive"] }
strum_macros = { version = "0.28" }
url = { version = "2" }
# runtime / async
async-recursion = { version = "1" }
async-trait = { version = "0.1" }
dashmap = { version = "6" }
futures = { version = "0.3" }
tokio = { version = "1", features = ["rt-multi-thread", "sync"] }
# protobuf
prost = { version = "0.14" }
# compression
flate2 = { version = "1" }
# testing
serial_test = { version = "3" }
tempfile = { version = "3" }
zip = { version = "8", default-features = false, features = ["deflate"] }