diff --git a/Cargo.lock b/Cargo.lock index f926e04..e5e790c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -438,6 +438,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "ecolor" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d9d80ab06fc3e7ceb0a7c9b0514c9eba266c189e71044e7bac679e1736a7cb" + [[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e46df77bb493b9ead5733540efdd2a1b0c18a5f75915921fc734495108172a5" +dependencies = [ + "ahash", + "epaint 0.24.0", "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.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c15479a96d9fadccf5dac690bdc6373b97b8e1c0dd28367058f25a5298da0195" +checksum = "065960051f1ff843be036a1743bd9fc8dfd508c0444dce35d620febed91fad2b" dependencies = [ - "egui", + "egui 0.24.0", "log", "raw-window-handle", "web-time", @@ -487,6 +504,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "emath" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df747beaedee141dc3950edc68a156c0e548c92fe1a92f0a51c1bdca3d6a054d" + [[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12f370b53e435fc235243174f3b2bf68a4b0202f3885cece16ad4aecd03222c4" +dependencies = [ + "ab_glyph", + "ahash", + "ecolor 0.24.0", + "emath 0.24.0", "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..4af606e 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.0", default-features = false } [features]