I encountered this while trying to bump Rust from nightly-2026-01-09 to nightly-2026-02-01 in Polars. The CI complains:
error: unused import: `polars_plan::prelude`
--> crates/polars-lazy/src/prelude.rs:17:16
|
17 | pub(crate) use polars_plan::prelude::*;
| ^^^^^^^^^^^^^^^^^^^^
However, this is a false positive, if one removes this line of code the crate fails to compile.
I briefly tried to re-create a minimal example that has the same issue but was unable to.