-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 878 Bytes
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 878 Bytes
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
[package]
name = "datafusion_example"
version = "1.0.0"
edition = "2024"
[dependencies]
arrow-json = "58"
aws-config = "1"
aws-sdk-s3 = "1"
aws-creds = "0.38"
aws-smithy-types = "1"
datafusion = "53"
bytes = "1"
color-eyre = "0.6"
chrono = "0.4"
futures-util = "0.3"
itertools = "0.13"
object_store = { version = "0.13", features = ["aws", "cloud"] }
parquet = "58"
rand = "0.9"
strum = "0.27"
strum_macros = "0.27"
tempfile = "3.27"
tokio = { version = "1", features = ["full"] }
time = "0.3"
tokio-stream = "0.1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
url = "2"
[dev-dependencies]
criterion = { version = "0.6", features = ["async_tokio"] }
tempfile = "3"
rstest = "0.24"
[[bench]]
name = "df_cols_to_json"
harness = false
[[bench]]
name = "df_cols_to_struct"
harness = false
[[bench]]
name = "add_column_to_df"
harness = false