-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (58 loc) · 1.5 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
[package]
name = "In-Memory-Analytics-with-Apache-Arrow"
version = "0.0.0"
edition = "2021"
[[example]]
name = "ch1"
path = "chapter1/rust/examples.rs"
[[example]]
name = "ch2_csv_reader"
path = "chapter2/rust/csv_reader.rs"
[[example]]
name = "ch2_csv_writer"
path = "chapter2/rust/csv_writer.rs"
[[example]]
name = "ch2_json_reader"
path = "chapter2/rust/json_reader.rs"
[[example]]
name = "ch2_parquet_reader_writer"
path = "chapter2/rust/parquet_reader_writer.rs"
[[example]]
name = "ch3_elastic"
path = "chapter3/rust/elastic.rs"
[[example]]
name = "ch4_generate_file"
path = "chapter4/rust/generate_file.rs"
[[example]]
name = "ch6_compute_functions"
path = "chapter6/rust/compute_functions.rs"
[[example]]
name = "ch6_compute_or_not"
path = "chapter6/rust/compute_or_not.rs"
[[example]]
name = "ch7_datasets_api"
path = "chapter7/rust/datasets_api.rs"
[[example]]
name = "ch7_s3_datasets"
path = "chapter7/rust/s3_datasets.rs"
[[example]]
name = "ch7_streaming_engine"
path = "chapter7/rust/streaming_engine.rs"
[[example]]
name = "ch7_write_partitioned"
path = "chapter7/rust/write_partitioned.rs"
[[example]]
name = "ch8"
path = "chapter8/rust/main.rs"
[dependencies]
influxdb = { version = "0.6", features = ["derive"] }
rand = "0.8"
rand_distr = "0.4"
elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"] }
datafusion = "22"
tokio = "1"
arrow = { version = "37", features = ["simd"] }
parquet = "37"
aws-config = "0.55"
aws-sdk-s3 = "0.26"
object_store = "0.5"