Skip to content

Commit

Permalink
Feature gate
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrumiller committed Nov 12, 2024
1 parent 1e6b17d commit 1863b06
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/polars-time/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@ pub use month_end::*;
pub use month_start::*;
#[cfg(feature = "offset_by")]
pub use offset_by::*;
#[cfg(any(feature = "dtype-date", feature = "dtype-datetime"))]
pub use replace::*;
pub use round::*;
pub use series::{date_series_from_parts, datetime_series_from_parts};
#[cfg(feature = "dtype-date")]
pub use series::date_series_from_parts;
#[cfg(feature = "dtype-datetime")]
pub use series::datetime_series_from_parts;
pub use truncate::*;
pub use upsample::*;
pub use windows::duration::Duration;
Expand Down

0 comments on commit 1863b06

Please sign in to comment.