From d9c77d88959eae0eb75067437d9cba24915462cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:04:50 +0000 Subject: [PATCH] Bump egui from 0.24.1 to 0.26.2 Bumps [egui](https://github.com/emilk/egui) from 0.24.1 to 0.26.2. - [Release notes](https://github.com/emilk/egui/releases) - [Changelog](https://github.com/emilk/egui/blob/master/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.24.1...0.26.2) --- updated-dependencies: - dependency-name: egui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 53 +++++++++++++++++++++++++++++++++++++++++++++-------- Cargo.toml | 2 +- 2 files changed, 46 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dec15f4..fd4ba05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -838,6 +838,12 @@ dependencies = [ "serde", ] +[[package]] +name = "ecolor" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03cfe80b1890e1a8cdbffc6044d6872e814aaf6011835a2a5e2db0e5c5c4ef4e" + [[package]] name = "eframe" version = "0.24.1" @@ -846,7 +852,7 @@ checksum = "cdd73918a828c35a7efb4d7188ea973df4bffc589178ed95f521c917b03ddcfa" dependencies = [ "bytemuck", "cocoa", - "egui", + "egui 0.24.1", "egui-winit", "egui_glow", "glow", @@ -876,12 +882,23 @@ checksum = "c55bcb864b764eb889515a38b8924757657a250738ad15126637ee2df291ee6b" dependencies = [ "accesskit", "ahash", - "epaint", + "epaint 0.24.1", "log", "nohash-hasher", "serde", ] +[[package]] +name = "egui" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180f595432a5b615fc6b74afef3955249b86cfea72607b40740a4cd60d5297d0" +dependencies = [ + "ahash", + "epaint 0.26.2", + "nohash-hasher", +] + [[package]] name = "egui-winit" version = "0.24.1" @@ -890,7 +907,7 @@ checksum = "3b673606b6606b12b95e3a3194d7882bf5cff302db36a520b8144c7c342e4e84" dependencies = [ "accesskit_winit", "arboard", - "egui", + "egui 0.24.1", "log", "raw-window-handle", "smithay-clipboard", @@ -905,7 +922,7 @@ version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97624eaf17a16058265d3a3e712e167798655baf7c8f693de25be75cdd6c57b5" dependencies = [ - "egui", + "egui 0.24.1", "enum-map", "image 0.24.9", "log", @@ -920,7 +937,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "262151f9d57c557c02a40a46f27b9e050a6eb0b006b94dced9c6f4519a04d489" dependencies = [ "bytemuck", - "egui", + "egui 0.24.1", "glow", "log", "memoffset 0.7.1", @@ -938,6 +955,12 @@ dependencies = [ "serde", ] +[[package]] +name = "emath" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6916301ecf80448f786cdf3eb51d9dbdd831538732229d49119e2d4312eaaf09" + [[package]] name = "encoding_rs" version = "0.8.33" @@ -1009,14 +1032,28 @@ dependencies = [ "ab_glyph", "ahash", "bytemuck", - "ecolor", - "emath", + "ecolor 0.24.1", + "emath 0.24.1", "log", "nohash-hasher", "parking_lot", "serde", ] +[[package]] +name = "epaint" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77b9fdf617dd7f58b0c8e6e9e4a1281f730cde0831d40547da446b2bb76a47af" +dependencies = [ + "ab_glyph", + "ahash", + "ecolor 0.26.2", + "emath 0.26.2", + "nohash-hasher", + "parking_lot", +] + [[package]] name = "equivalent" version = "1.0.1" @@ -2058,7 +2095,7 @@ dependencies = [ "bytes", "cfg-if", "eframe", - "egui", + "egui 0.26.2", "egui_extras", "image 0.25.0", "mockito", diff --git a/Cargo.toml b/Cargo.toml index 3f57da6..52e7459 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ anyhow = "1.0" bytes = "1.5" cfg-if = "1.0" eframe = "0.24" -egui = "0.24" +egui = "0.26" egui_extras = { version = "0.24", features = ["image"] } image = { version = "0.25", default-features = false, features = ["jpeg", "png"] } mockito = { version = "1.2" }