[package]
name = "polars"
version = "0.17.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
license = "MIT"
description = "DataFrame Library based on Apache Arrow"
repository = "https://github.com/pola-rs/polars"
readme = "../README.md"
[features]
rows = ["polars-core/rows"]
simd = ["polars-core/simd"]
avx512 = ["polars-core/avx512"]
docs = ["polars-core/docs"]
temporal = ["polars-core/temporal", "polars-lazy/temporal", "polars-io/temporal"]
random = ["polars-core/random"]
default = ["docs",
"zip_with",
"csv-file",
"temporal",
"performant",
"plain_fmt",
"dtype-slim",
]
ndarray = ["polars-core/ndarray"]
serde = ["polars-core/serde"]
parquet = ["polars-io", "polars-core/parquet", "polars-lazy/parquet", "polars-io/parquet"]
lazy = ["polars-core/lazy", "polars-lazy", "polars-lazy/compile"]
strings = ["polars-core/strings"]
object = ["polars-core/object"]
json = ["polars-io", "polars-io/json"]
ipc = ["polars-io", "polars-io/ipc"]
csv-file = ["polars-io", "polars-io/csv-file", "polars-lazy/csv-file"]
performant = ["polars-core/performant"]
plain_fmt = ["polars-core/plain_fmt"]
pretty_fmt = ["polars-core/pretty_fmt"]
pivot = ["polars-core/pivot"]
downsample = ["polars-core/downsample"]
sort_multiple = ["polars-core/sort_multiple"]
is_in = ["polars-core/is_in", "polars-lazy/is_in"]
zip_with = ["polars-core/zip_with"]
round_series = ["polars-core/round_series", "polars-lazy/round_series"]
checked_arithmetic = ["polars-core/checked_arithmetic"]
repeat_by = ["polars-core/repeat_by", "polars-lazy/repeat_by"]
is_first = ["polars-core/is_first", "polars-lazy/is_first"]
is_last = ["polars-core/is_last"]
asof_join = ["polars-core/asof_join", "polars-lazy/asof_join"]
cross_join = ["polars-core/cross_join", "polars-lazy/cross_join"]
dot_product = ["polars-core/dot_product", "polars-lazy/dot_product"]
concat_str = ["polars-core/concat_str", "polars-lazy/concat_str"]
row_hash = ["polars-core/row_hash"]
reinterpret = ["polars-core/reinterpret"]
decompress = ["polars-io/decompress"]
decompress-fast = ["polars-io/decompress-fast"]
mode = ["polars-core/mode", "polars-lazy/mode"]
take_opt_iter = ["polars-core/take_opt_iter"]
extract_jsonpath = ["polars-core/extract_jsonpath", "polars-core/strings"]
groupby_list = ["polars-core/groupby_list"]
lazy_regex = ["polars-lazy/regex"]
cum_agg = ["polars-core/cum_agg", "polars-core/cum_agg"]
rolling_window = ["polars-core/rolling_window", "polars-lazy/rolling_window"]
interpolate = ["polars-core/interpolate", "polars-lazy/interpolate"]
list = ["polars-core/list", "polars-lazy/list"]
rank = ["polars-core/rank", "polars-lazy/rank"]
diff = ["polars-core/diff", "polars-lazy/diff"]
moment = ["polars-core/moment", "polars-lazy/moment"]
arange = ["polars-lazy/arange"]
true_div = ["polars-lazy/true_div"]
private = ["polars-lazy/private"]
dtype-full = [
"dtype-date",
"dtype-datetime",
"dtype-time",
"dtype-i8",
"dtype-i16",
"dtype-u8",
"dtype-u16",
"dtype-categorical",
]
dtype-slim = [
"dtype-date",
"dtype-datetime",
]
dtype-date = ["polars-core/dtype-date", "polars-lazy/dtype-date", "polars-io/dtype-date"]
dtype-datetime= ["polars-core/dtype-datetime", "polars-lazy/dtype-datetime", "polars-io/dtype-datetime"]
dtype-time= ["polars-core/dtype-time", "polars-io/dtype-time"]
dtype-i8 = ["polars-core/dtype-i8", "polars-lazy/dtype-i8"]
dtype-i16 = ["polars-core/dtype-i16", "polars-lazy/dtype-i16"]
dtype-u8 = ["polars-core/dtype-u8", "polars-lazy/dtype-u8"]
dtype-u16 = ["polars-core/dtype-u16", "polars-lazy/dtype-u16"]
dtype-categorical = ["polars-core/dtype-categorical"]
docs-selection = [
"csv-file",
"json",
"parquet",
"ipc",
"dtype-full",
"pivot",
"is_in",
"sort_multiple",
"rows",
"docs",
"strings",
"object",
"lazy",
"temporal",
"random",
"zip_with",
"round_series",
"checked_arithmetic",
"ndarray",
"downsample",
"repeat_by",
"is_first",
"is_last",
"asof_join",
"cross_join",
"concat_str",
"decompress",
"mode",
"take_opt_iter",
"extract_jsonpath",
"cum_agg",
"rolling_window",
"interpolate",
"diff",
"rank",
"list",
"arange"
]
[dependencies]
polars-core = {version = "0.17.0", path = "./polars-core", features= ["docs", "private"], default-features = false}
polars-io = {version = "0.17.0", path = "./polars-io", features = ["private"], default-features = false, optional=true}
polars-lazy = {version = "0.17.0", path = "./polars-lazy", features=["private"], default-features = false, optional=true}
[dev-dependencies]
criterion = "0.3"
lazy_static = "1.4"
rand = "0.8"
ahash = "0.7"
[lib]
bench = false
[[bench]]
name = "csv"
harness = false
[[bench]]
name = "groupby"
harness = false
[[bench]]
name = "collect"
harness = false
[[bench]]
name = "take"
harness = false
[package.metadata.docs.rs]
features = ["docs-selection"]
rustdoc-args = ["--cfg", "docsrs"]