Describe the bug
Since 0.32, the PlotItem has a new dependency PlotItemBase . When importing PlotItemBase, the dependency is not found
To Reproduce
Steps to reproduce the behavior:
- Create a simple project that depends on egui_plot 0.32 or higher
- Include a import line such as: '''pub use egui_plot::PlotItemBase;'''
- Compile
Expected behavior
Compilation works
Screenshots
error[E0432]: unresolved import egui_plot::PlotItemBase
Additional context
I believe this issue happens because in lib.rs there is a 'pub use crate' that references 'PlotItem' but there is no reference to PlotItemBase, what prevents it from being imported properly