-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
57 lines (52 loc) · 1.16 KB
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
[package]
name = "datu"
version = "0.3.0"
edition = "2024"
description = "datu - a data file utility"
license = "MIT"
repository = "https://github.com/aisrael/datu"
readme = "README.md"
exclude = [
".github/*"
]
[dependencies]
anyhow = "1.0.100"
async-trait = "0.1"
arrow = "57.2.0"
log = "0.4"
arrow-avro = "57.2.0"
arrow-json = "57.2.0"
clap = { version = "4.5.54", features = ["cargo", "derive"] }
chrono = "0.4"
datafusion = { version = "52.1.0", features = ["avro"] }
parquet = "57.2.0"
orc-rust = "0.7"
futures = "0.3"
tokio = { version = "1.48", features = ["macros", "rt", "sync"] }
thiserror = "2.0.18"
csv = "1.4.0"
hashlink = "0.10"
saphyr = "0.0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rust_xlsxwriter = { version = "0.93", features = ["chrono"] }
rustc-literal-escaper = "0.0.7"
rustyline = "17.0"
flt = { version = "0.0.2" }
dirs = { version = "2.0.0", package = "dirs-next" }
[dev-dependencies]
criterion = "0.5"
cucumber = "0.22.1"
expectrl = "0.8"
serde_yaml = "0.9"
gherkin = "0.15"
tempfile = "3"
[[bench]]
name = "parquet_to_avro"
harness = false
[[test]]
name = "features"
harness = false
[[test]]
name = "repl"
harness = false