diff --git a/Cargo.lock b/Cargo.lock index f926e04..ef9ec66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -438,6 +438,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "ecolor" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b7637fc2e74d17e52931bac90ff4fc061ac776ada9c7fa272f24cdca5991972" + [[package]] name = "egui" version = "0.23.0" @@ -445,7 +451,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8bd69fed5fcf4fbb8225b24e80ea6193b61e17a625db105ef0c4d71dde6eb8b7" dependencies = [ "ahash", - "epaint", + "epaint 0.23.0", + "nohash-hasher", +] + +[[package]] +name = "egui" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c55bcb864b764eb889515a38b8924757657a250738ad15126637ee2df291ee6b" +dependencies = [ + "ahash", + "epaint 0.24.1", "log", "nohash-hasher", ] @@ -457,7 +474,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62d4c9ab93d9528c184ef1d695c8c99b2e6d50833696ec3f513063efeee0fe77" dependencies = [ "bytemuck", - "epaint", + "epaint 0.23.0", "log", "thiserror", "type-map", @@ -467,11 +484,11 @@ dependencies = [ [[package]] name = "egui-winit" -version = "0.23.0" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c15479a96d9fadccf5dac690bdc6373b97b8e1c0dd28367058f25a5298da0195" +checksum = "3b673606b6606b12b95e3a3194d7882bf5cff302db36a520b8144c7c342e4e84" dependencies = [ - "egui", + "egui 0.24.1", "log", "raw-window-handle", "web-time", @@ -487,6 +504,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "emath" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a045c6c0b44b35e98513fc1e9d183ab42881ac27caccb9fa345465601f56cce4" + [[package]] name = "env_logger" version = "0.10.1" @@ -509,8 +532,22 @@ dependencies = [ "ab_glyph", "ahash", "bytemuck", - "ecolor", - "emath", + "ecolor 0.23.0", + "emath 0.23.0", + "nohash-hasher", + "parking_lot", +] + +[[package]] +name = "epaint" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d1b9e000d21bab9b535ce78f9f7745be28b3f777f6c7223936561c5c7fefab8" +dependencies = [ + "ab_glyph", + "ahash", + "ecolor 0.24.1", + "emath 0.24.1", "log", "nohash-hasher", "parking_lot", @@ -968,7 +1005,7 @@ name = "lib" version = "0.1.0" dependencies = [ "bytemuck", - "egui", + "egui 0.23.0", "instant", "log", "nanorand", @@ -2176,7 +2213,7 @@ version = "0.1.0" dependencies = [ "console_error_panic_hook", "console_log", - "egui", + "egui 0.23.0", "egui-wgpu", "egui-winit", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 72b6b51..f3fce52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ env_logger = "0.10.0" wasm-bindgen = "0.2.88" egui-wgpu = { version = "0.23.0", features = ["winit"] } -egui-winit = { version = "0.23.0", default-features = false } +egui-winit = { version = "0.24.1", default-features = false } [features]