forked from sjrusso8/spark-connect-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (34 loc) · 1.33 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
[workspace]
members = ["crates/*", "examples"]
resolver = "2"
[workspace.package]
authors = ["Steve Russo <[email protected]>"]
keywords = ["spark", "spark_connect"]
readme = "README.md"
edition = "2021"
homepage = "https://github.com/sjrusso8/spark-connect-rs"
description = "Apache Spark Connect Client for Rust"
license = "Apache-2.0"
documentation = "https://docs.rs/spark-connect-rs"
repository = "https://github.com/sjrusso8/spark-connect-rs"
rust-version = "1.81"
[workspace.dependencies]
tonic = { version ="0.11", default-features = false }
tonic-web-wasm-client = { version = "0.6" }
tokio = { version = "1.40", default-features = false, features = ["macros"] }
tower = { version = "0.5" }
futures-util = { version = "0.3.31" }
http-body = { version = "0.4.6" }
arrow = { version = "53", features = ["prettyprint"] }
arrow-ipc = { version = "53" }
serde_json = { version = "1" }
prost = { version = "0.12" }
prost-types = { version = "0.12" }
rand = { version = "0.8" }
uuid = { version = "1.8", features = ["v4"] }
url = { version = "2.5" }
chrono = { version = "0.4.38" }
getrandom = { version = "0.2" }
datafusion = { version = "42.0", default-features = false }
polars = { version = "0.43", default-features = false }
polars-arrow = { version = "0.43", default-features = false, features = ["arrow_rs"] }