From 39ead06b1f0f71b70b0373969a39e1e4554832ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 01:43:22 +0000 Subject: [PATCH] Update egui requirement from >=0.24, <=0.27 to >=0.24, <=0.32 Updates the requirements on [egui](https://github.com/emilk/egui) to permit the latest version. - [Release notes](https://github.com/emilk/egui/releases) - [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.24.0...0.32.1) --- updated-dependencies: - dependency-name: egui dependency-version: 0.32.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 33ddad8..b58bbb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ presser = { version = "0.3", default-features = false } # such as the ability to link/load a Vulkan library. ash = { version = "0.38", optional = true, default-features = false, features = ["debug"] } # Only needed for visualizer. -egui = { version = ">=0.24, <=0.27", optional = true, default-features = false } +egui = { version = ">=0.24, <=0.32", optional = true, default-features = false } egui_extras = { version = ">=0.24, <=0.27", optional = true, default-features = false } hashbrown = { version = "0.15.2", optional = true }