Skip to content

Commit d219b2d

Browse files
authored
fix: Fix incorrect cargo sub-feature (pola-rs#25738)
1 parent 40d7a8c commit d219b2d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

crates/polars-lazy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ bitwise = [
216216
approx_unique = ["polars-plan/approx_unique", "polars-expr/approx_unique", "polars-stream?/approx_unique"]
217217
is_in = ["polars-plan/is_in", "polars-ops/is_in", "polars-expr/is_in", "polars-stream?/is_in"]
218218
repeat_by = ["polars-expr/repeat_by"]
219-
round_series = ["polars-expr/round_series", "polars-ops/round_series", "polars-expr/round_series"]
219+
round_series = ["polars-expr/round_series", "polars-ops/round_series"]
220220
is_first_distinct = ["polars-expr/is_first_distinct"]
221221
is_last_distinct = ["polars-expr/is_last_distinct"]
222-
is_between = ["polars-expr/is_between", "polars-expr/is_between"]
222+
is_between = ["polars-expr/is_between"]
223223
is_close = ["polars-expr/is_close"]
224224
is_unique = ["polars-expr/is_unique"]
225225
cross_join = ["polars-plan/cross_join", "polars-ops/cross_join"]

crates/polars/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ merge_sorted = ["polars-lazy?/merge_sorted"]
216216
meta = ["polars-lazy?/meta"]
217217
mode = ["polars-ops/mode", "polars-lazy?/mode"]
218218
moment = ["polars-ops/moment", "polars-lazy?/moment"]
219-
new_streaming = ["polars-lazy?/new_streaming", "polars-core/dtype-categorical"]
219+
new_streaming = ["polars-lazy?/new_streaming", "dtype-categorical"]
220220
partition_by = ["polars-core/partition_by"]
221221
pct_change = ["polars-ops/pct_change", "polars-lazy?/pct_change"]
222222
peaks = ["polars-lazy/peaks"]

0 commit comments

Comments
 (0)