-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
31 lines (29 loc) · 892 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
31
[package]
name = "pqrs"
version = "0.3.2"
authors = ["Manoj Karthick"]
description = "Apache Parquet command-line tools and utilities"
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://github.com/manojkarthick/pqrs"
repository = "https://github.com/manojkarthick/pqrs"
keywords = ["cli", "arrow", "parquet"]
categories = ["command-line-utilities"]
[dependencies]
thiserror = "1.0.30"
log = "0.4.16"
env_logger = "0.9.0"
parquet = { version = "51.0.0", features = ["cli"] }
arrow = { version = "51.0.0", features = ["chrono-tz"] }
arrow-schema = { version = "51.0.0", features = ["serde"] }
clap = { version = "4.2.7", features = ["derive"] }
rand = "0.8.5"
walkdir = "2.3.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.117"
linked_hash_set = "0.1.4"
[dev-dependencies]
assert_cmd = "2.0.4"
predicates = "2.1.1"
tempfile = "3.3.0"