You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plotters = { version = "0.3.7", default-features = false, features = ["svg_backend", "all_series","colormaps"] }
Produces this compiler error:
error[E0432]: unresolved import `super::full_palette`
--> /home/werner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/plotters-0.3.7/src/style/colors/colormaps.rs:353:12
|
353 | use super::full_palette::*;
| ^^^^^^^^^^^^ could not find `full_palette` in `super`
I think the "colormaps" feature is missing a dependency on "full_palette"
The text was updated successfully, but these errors were encountered:
Pretty simple; putting this in Cargo.toml:
plotters = { version = "0.3.7", default-features = false, features = ["svg_backend", "all_series","colormaps"] }
Produces this compiler error:
I think the "colormaps" feature is missing a dependency on "full_palette"
The text was updated successfully, but these errors were encountered: