-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
106 lines (97 loc) · 2.61 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# 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.
[package]
name = "datafusion_ray"
description = "DataFusion on Ray"
homepage = "https://github.com/apache/datafusion-ray"
repository = "https://github.com/apache/datafusion-ray"
authors = ["Apache DataFusion <[email protected]>"]
version = "0.1.0"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
rust-version = "1.76"
build = "build.rs"
[dependencies]
anyhow = "1"
arrow = { version = "53.3", features = ["pyarrow", "ipc"] }
arrow-flight = "53.3"
async-stream = "0.3"
async-channel = "2.3"
bytesize = "1.3"
datafusion = { version = "43.0", features = ["pyarrow", "avro"] }
datafusion-python = { version = "43.1" }
datafusion-proto = "43.0"
env_logger = "0.11"
futures = "0.3"
glob = "0.3.1"
itertools = "0.14"
local-ip-address = "0.6"
log = "0.4"
object_store = { version = "0.11.0", features = [
"aws",
"gcp",
"azure",
"http",
] }
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
prost = "0.13"
pyo3 = { version = "0.22.6", features = [
"extension-module",
"abi3",
"abi3-py38",
] }
pyo3-async-runtimes = { version = "0.22", features = ["tokio-runtime"] }
pyo3-pylogger = "0.3.0"
rust_decimal = "1.36"
tokio = { version = "1.40", features = [
"macros",
"rt",
"rt-multi-thread",
"sync",
"time",
] }
tokio-stream = "0.1"
tonic = { version = "0.12.3", default-features = false, features = [
"transport",
"codegen",
"prost",
] }
uuid = "1.11.0"
url = "2"
[build-dependencies]
prost-types = "0.13"
rustc_version = "0.4.0"
tonic-build = { version = "0.8", default-features = false, features = [
"transport",
"prost",
] }
url = "2"
[lib]
name = "datafusion_ray"
crate-type = ["cdylib", "rlib"]
[package.metadata.maturin]
name = "datafusion_ray._datafusion_ray_internal"
[profile.release]
lto = "thin"
codegen-units = 1
opt-level = 3
debug = 0
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 1