forked from jorgecarleitao/parquet2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 923 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
32
[package]
name = "parquet2"
version = "0.5.2"
license = "Apache-2.0"
description = "Safe implementation of parquet IO."
authors = ["Jorge C. Leitao <jorgecarleitao@gmail.com", "Apache Arrow <dev@arrow.apache.org>"]
readme = "README.md"
edition = "2018"
[lib]
name = "parquet2"
bench = false
[dependencies]
parquet-format-async-temp = "0.2.0"
bitpacking = { version = "0.8.2", features = ["bitpacker1x"] }
streaming-decompression = "0.1"
async-stream = { version = "0.3.2", optional = true }
futures = { version = "0.3", optional = true }
snap = { version = "^1.0", optional = true }
brotli = { version = "^3.3", optional = true }
flate2 = { version = "^1.0", optional = true }
lz4 = { version = "^1.23", optional = true }
zstd = { version = "^0.9", optional = true }
[features]
default = ["snappy", "gzip", "lz4", "zstd", "brotli", "stream"]
snappy = ["snap"]
gzip = ["flate2"]
stream = ["futures", "async-stream"]