diff --git a/crates/bevy-inspector-egui/Cargo.toml b/crates/bevy-inspector-egui/Cargo.toml index b3add5a7..d901786c 100644 --- a/crates/bevy-inspector-egui/Cargo.toml +++ b/crates/bevy-inspector-egui/Cargo.toml @@ -9,6 +9,7 @@ description = "Inspector plugin for the bevy game engine" keywords = ["bevy", "inspector", "egui", "editor", "reflect"] categories = ["game-development", "gui", "visualization", "development-tools::procedural-macro-helpers"] + [dependencies] bevy-inspector-egui-derive = { version = "0.15.0-pre.0", path = "../bevy-inspector-egui-derive" } bevy_reflect = { version = "0.9" } @@ -23,13 +24,13 @@ bevy_math = { version = "0.9" } bevy_core_pipeline = { version = "0.9" } bevy_utils = { version = "0.9" } -egui = "0.19.0" -bevy_egui = "0.17" +egui = "0.20.0" +bevy_egui = "0.18" -image = { version = "0.24.3", default-features = false } -once_cell = "1.14.0" +image = { version = "0.24.5", default-features = false } +once_cell = "1.16.0" pretty-type-name = "1.0.0" -smallvec = "1.9.0" +smallvec = "1.10.0" [dev-dependencies] bevy = { version = "0.9", default-features = false, features = ["render", "x11", "bevy_winit", "animation", "png"] } diff --git a/crates/bevy-inspector-egui/src/inspector_egui_impls/color.rs b/crates/bevy-inspector-egui/src/inspector_egui_impls/color.rs index c68ab22f..fd71c06d 100644 --- a/crates/bevy-inspector-egui/src/inspector_egui_impls/color.rs +++ b/crates/bevy-inspector-egui/src/inspector_egui_impls/color.rs @@ -1,7 +1,7 @@ use std::any::Any; use bevy_render::color::Color; -use egui::{color::Hsva, Color32}; +use egui::{ecolor::Hsva, Color32}; use crate::egui_reflect_inspector::InspectorUi;