Cargo Features
[dependencies]
polars-stream = { version = "0.45.1", default-features = false, features = ["nightly", "bitwise", "merge_sorted", "strings", "ipc", "parquet", "csv", "json", "cloud", "dtype-categorical", "python"] }
- nightly
- bitwise default
-
Enables bitwise of polars-core, polars-expr, and polars-plan
polars-plan:
operations
- merge_sorted
-
Enables merge_sorted of polars-plan
- dynamic_group_by strings
- ipc
-
Enables ipc of polars-io, polars-mem-engine, and polars-plan
polars-io:
support for arrows ipc file parsing
Affects
io_sinks::ipc
,io_sources::ipc
… - parquet
-
Enables parquet of polars-mem-engine and polars-plan
Affects
io_sources::parquet
… - csv
-
Enables csv of polars-io, polars-mem-engine, and polars-plan
Affects
io_sources::csv
… - json
-
Enables json of polars-io, polars-mem-engine, and polars-plan
polars-io:
support for arrows json parsing
- cloud
-
Enables cloud of polars-io, polars-mem-engine, and polars-plan
- dtype-categorical
-
Enables dtype-categorical of polars-core
- python
-
Enables python of polars-plan
- default = bitwise
-
We need to specify default features here to match workspace defaults.
Otherwise we get warnings with cargo check/clippy.