-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
24 lines (23 loc) · 899 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
[package]
name = "parquet2json"
description = "A command-line tool for streaming Parquet as line-delimited JSON"
version = "4.0.0"
edition = "2021"
license = "MIT"
authors = ["Pieter Raubenheimer <[email protected]>"]
repository = "https://github.com/jupiter/parquet2json"
[dependencies]
arrow-array = { version = "52.0.0" }
arrow-cast = { version = "52.0.0" }
arrow-json = { version = "52.0.0" }
arrow-schema = { version = "52.0.0" }
aws-config = { version = "1.1.8" }
aws-runtime = { version = "1.1.8" }
aws-types = { version = "1.1.8" }
clap = { version = "4.5.4", features = ["derive"] }
object_store = { version = "0.10.1", features = ["aws", "http"] }
parquet = { version = "52.0.0", features = ["async", "json", "object_store"]}
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }
tokio-stream = { version = "0.1" }
url = { version = "2.5.0" }
urlencoding = { version = "2.1.3" }