-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
77 lines (70 loc) · 2.55 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
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
# 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/*",
"python",
]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.76"
keywords = ["apachehudi", "hudi", "datalake", "arrow"]
readme = "README.md"
description = "A native Rust library for Apache Hudi"
homepage = "https://github.com/apache/hudi-rs"
repository = "https://github.com/apache/hudi-rs"
[workspace.dependencies]
# arrow
arrow = { version = "= 53.1.0", features = ["pyarrow"] }
arrow-arith = { version = "= 53.1.0" }
arrow-array = { version = "= 53.1.0" }
arrow-buffer = { version = "= 53.1.0" }
arrow-cast = { version = "= 53.1.0" }
arrow-ipc = { version = "= 53.1.0" }
arrow-json = { version = "= 53.1.0" }
arrow-ord = { version = "= 53.1.0" }
arrow-row = { version = "= 53.1.0" }
arrow-schema = { version = "= 53.1.0", features = ["serde"] }
arrow-select = { version = "= 53.1.0" }
object_store = { version = "= 0.11.0", features = ["aws", "azure", "gcp"] }
parquet = { version = "= 53.1.0", features = ["async", "object_store"] }
# datafusion
datafusion = { version = "= 42.0.0" }
datafusion-expr = { version = "= 42.0.0" }
datafusion-common = { version = "= 42.0.0" }
datafusion-physical-expr = { version = "= 42.0.0" }
# serde
percent-encoding = { version = "2.3.1" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = { version = "1" }
# "stdlib"
anyhow = { version = "1.0.86" }
bytes = { version = "1" }
paste = { version = "1.0.15" }
once_cell = { version = "1.19.0" }
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
url = { version = "2" }
# runtime / async
async-recursion = { version = "1.1.1" }
async-trait = { version = "0.1" }
dashmap = { version = "6.0.1" }
futures = { version = "0.3" }
tokio = { version = "1", features = ["rt-multi-thread"] }