-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (28 loc) · 902 Bytes
/
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
[package]
name = "parquet-sink-dedicated-exec-repro"
version = "0.1.0"
edition = "2024"
default-run = "parquet-sink-dedicated-exec-repro"
[dependencies]
arrow = "54.2.0"
arrow-flight = { version = "54.2.0", features = ["flight-sql-experimental"] }
arrow-schema = "54.2.0"
async-trait = "0.1.86"
bytes = "1.10.0"
console-subscriber = "0.4.1"
datafusion = { version = "45.0.0", optional = true }
dotenvy = "0.15.7"
futures = "0.3.31"
object_store = { version = "0.11.2", features = ["aws"] }
parquet = { version = "54.2.0", features = ["async", "object_store"] }
prost = "0.13.5"
rand = "0.9.0"
testcontainers = "0.23.2"
testcontainers-modules = { version = "0.11.6", features = ["localstack"] }
tokio = { version = "1.43.0", features = ["full"] }
tokio-stream = "0.1.17"
tonic = "0.12.3"
[features]
default = ["dedicated-executor"]
# Enables the dedicated executor
dedicated-executor = ["datafusion"]