Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Enable missing features in polars-time #15558

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/polars-time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,17 @@ regex = { workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }
smartstring = { workspace = true }

[dev-dependencies]
ritchie46 marked this conversation as resolved.
Show resolved Hide resolved
polars-ops = { workspace = true, features = ["abs"] }

[features]
dtype-date = ["polars-core/dtype-date", "temporal"]
dtype-datetime = ["polars-core/dtype-datetime", "temporal"]
dtype-time = ["polars-core/dtype-time", "temporal"]
dtype-duration = ["polars-core/dtype-duration", "temporal"]
rolling_window = ["polars-core/rolling_window", "dtype-duration"]
fmt = ["polars-core/fmt"]
serde = ["dep:serde", "smartstring/serde"]
temporal = ["polars-core/temporal"]
timezones = ["chrono-tz", "dtype-datetime", "polars-core/timezones", "arrow/timezones", "polars-ops/timezones"]

Expand Down
Loading