Skip to content

Commit

Permalink
rust docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Aug 26, 2023
1 parent bd2bc2b commit abe15c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Build Rust documentation
env:
RUSTDOCFLAGS: --cfg docsrs -D warnings
RUSTDOCFLAGS: --cfg docsrs -D warnings --allow=rustdoc::redundant-explicit-links
working-directory: crates
run: make doctest

Expand Down
4 changes: 3 additions & 1 deletion crates/polars-plan/src/dsl/functions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ use polars_core::export::arrow::temporal_conversions::NANOSECONDS;
use polars_core::utils::arrow::temporal_conversions::SECONDS_IN_DAY;
#[cfg(feature = "dtype-struct")]
use polars_core::utils::get_supertype;
pub use range::{date_range, time_range, *};
pub use range::*;
#[cfg(feature = "temporal")]
pub use range::{date_range, time_range};
pub use selectors::*;
pub use syntactic_sugar::*;
pub use temporal::*;
Expand Down

0 comments on commit abe15c9

Please sign in to comment.