From 80fc20a94c09d79017da7df6c72ec1c0bf325eb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 03:24:00 +0000 Subject: [PATCH] Bump egui from 0.24.1 to 0.27.1 Bumps [egui](https://github.com/emilk/egui) from 0.24.1 to 0.27.1. - [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.27.1) --- 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 6fd82d1..73d4a0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -838,6 +838,12 @@ dependencies = [ "serde", ] +[[package]] +name = "ecolor" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb152797942f72b84496eb2ebeff0060240e0bf55096c4525ffa22dd54722d86" + [[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.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d1b8cc14b0b260aa6bd124ef12c8a94f57ffe8e40aa970f3db710c21bb945f3" +dependencies = [ + "ahash", + "epaint 0.27.1", + "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.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "555a7cbfcc52c81eb5f8f898190c840fa1c435f67f30b7ef77ce7cf6b7dcd987" + [[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.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd63c37156e949bda80f7e39cc11508bc34840aecf52180567e67cdb2bf1a5fe" +dependencies = [ + "ab_glyph", + "ahash", + "ecolor 0.27.1", + "emath 0.27.1", + "nohash-hasher", + "parking_lot", +] + [[package]] name = "equivalent" version = "1.0.1" @@ -2058,7 +2095,7 @@ dependencies = [ "bytes", "cfg-if", "eframe", - "egui", + "egui 0.27.1", "egui_extras", "image 0.25.0", "mockito", diff --git a/Cargo.toml b/Cargo.toml index 3f57da6..69ce32a 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.27" egui_extras = { version = "0.24", features = ["image"] } image = { version = "0.25", default-features = false, features = ["jpeg", "png"] } mockito = { version = "1.2" }