Skip to content

Commit

Permalink
Upgrade rework branch dependencies (mvlabat#104)
Browse files Browse the repository at this point in the history
* update egui

* fix Hsva import

* update bevy_egui to 0.18
  • Loading branch information
barsoosayque authored Dec 16, 2022
1 parent 5c14a00 commit 1460beb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions crates/bevy-inspector-egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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"] }
Expand Down
Original file line number Diff line number Diff line change
@@ -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;

Expand Down

0 comments on commit 1460beb

Please sign in to comment.