forked from jupiter/parquet2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (22 loc) · 852 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
[package]
name = "parquet2json"
description = "A command-line tool for converting Parquet to newline-delimited JSON"
version = "1.2.1"
edition = "2018"
license = "MIT"
authors = ["Pieter Raubenheimer <[email protected]>"]
repository = "https://github.com/jupiter/parquet2json"
[dependencies]
bytes = { version = "1.0.1" }
chunked-bytes = { version = "0.3.0" }
crossbeam-channel = { version = "0.5.1" }
clap = "2.33.3"
lazy_static = { version = "1.4.0" }
parquet = { version = "5.2.0", features = ["cli"] }
regex = { version = "1.5.4" }
reqwest = { version = "0.11", features = ["blocking"] }
rusoto_core = { version = "0.47.0", default_features = false, features=["rustls"] }
rusoto_s3 = { version = "0.47.0", default_features = false, features=["rustls"] }
tokio = { version = "1.0" }
tokio-stream = { version = "0.1.7" }
url = { version = "2.2.2" }