[package]
name = "polars-io"
version = "0.17.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
license = "MIT"
description = "IO related logic for the Polars DataFrame library"
repository = "https://github.com/pola-rs/polars"
[features]
json = ["arrow/io_json"]
ipc = ["arrow/io_ipc", "arrow/io_ipc_compression"]
lazy = []
parquet = ["polars-core/parquet", "arrow/io_parquet", "arrow/io_parquet_compression"]
dtype-datetime= ["polars-core/dtype-datetime", "polars-core/temporal"]
dtype-date = ["polars-core/dtype-date"]
dtype-time = ["polars-core/dtype-time", "polars-core/temporal"]
csv-file = ["csv-core", "memmap", "lexical", "arrow/io_csv_write"]
fmt = ["polars-core/plain_fmt"]
decompress = ["flate2/miniz_oxide"]
decompress-fast = ["flate2/zlib-ng-compat"]
temporal = ["polars-core/dtype-date", "polars-core/dtype-datetime"]
private = []
[dependencies]
arrow = { package = "arrow2", version="0.7", --default-features=false }
polars-core = {version = "0.17.0", path = "../polars-core", features = ["private"], default-features=false}
polars-arrow = {version = "0.17.0", path = "../polars-arrow"}
lexical = {version = "6", optional = true, default-features=false, features = ["std", "parse-floats", "parse-integers"]}
num_cpus = "1.13.0"
csv-core = {version = "0.1.10", optional=true}
regex = "1.4"
lazy_static = "1.4"
memmap = { package = "memmap2", version = "0.5.0", optional=true}
memchr = "2.4"
anyhow = "1.0"
rayon = "1.5"
ahash = "0.7"
num = "^0.4.0"
dirs = "3.0"
simdutf8 = "0.1"
flate2 = {version = "1", optional=true, default-features=false}
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]