-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 854 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
[package]
name = "tpchgen-cli"
version = "2.0.2"
authors = { workspace = true }
description = "Blazing fast pure Rust TPC-H data generator command line tool and library."
readme = "README.md"
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[lib]
name = "tpchgen_cli"
path = "src/lib.rs"
[[bin]]
name = "tpchgen-cli"
path = "bin/main.rs"
[dependencies]
arrow = "58"
parquet = "58"
clap = { version = "4.5.32", features = ["derive"] }
tpchgen = { path = "../tpchgen", version = "2.0.2" }
tpchgen-arrow = { path = "../tpchgen-arrow", version = "2.0.2" }
tokio = { version = "1.44.1", features = ["full"] }
futures = "0.3.31"
num_cpus = "1.0"
log = "0.4.26"
env_logger = "0.11.7"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.20.0"
flate2 = "1.1.0"