[package]
name = "polars-lazy"
version = "0.17.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Lazy query engine for the Polars DataFrame library"
repository = "https://github.com/pola-rs/polars"
[features]
compile = []
default = ["compile"]
parquet = ["polars-core/parquet", "polars-io/parquet"]
csv-file = ["polars-io/csv-file"]
temporal = ["polars-core/temporal"]
fmt = ["polars-core/plain_fmt"]
future = []
dtype-u8 = ["polars-core/dtype-u8"]
dtype-u16 = ["polars-core/dtype-u16"]
dtype-i8 = ["polars-core/dtype-i8"]
dtype-i16 = ["polars-core/dtype-i16"]
dtype-date = ["polars-core/dtype-date"]
dtype-datetime= ["polars-core/dtype-datetime"]
dtype-categorical = ["polars-core/dtype-categorical"]
true_div = []
is_in = ["polars-core/is_in"]
repeat_by = ["polars-core/repeat_by"]
round_series = ["polars-core/round_series"]
is_first = ["polars-core/is_first"]
cross_join = ["polars-core/cross_join"]
asof_join = ["polars-core/asof_join"]
dot_product = ["polars-core/dot_product"]
concat_str = ["polars-core/concat_str"]
arange = []
mode = ["polars-core/mode"]
cum_agg = ["polars-core/cum_agg"]
interpolate = ["polars-core/interpolate"]
rolling_window = ["polars-core/rolling_window"]
rank = ["polars-core/rank"]
diff = ["polars-core/diff"]
moment = ["polars-core/moment"]
list = ["polars-core/list"]
private = []
[dependencies]
ahash = "0.7"
rayon = "1.5"
itertools = "0.10"
regex = {version = "1.4", optional = true}
polars-io = {version = "0.17.0", path = "../polars-io", features = ["lazy", "csv-file", "private"], default-features=false}
polars-core = {version = "0.17.0", path = "../polars-core", features = ["lazy", "private", "zip_with"], default-features=false}
polars-arrow = {version = "0.17.0", path = "../polars-arrow"}
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]