From 5195c616585a86ed7419b6ff487e9303c3fdd296 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 14:14:28 +0000 Subject: [PATCH] Update egui requirement from 0.32.1 to 0.33.0 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.32.1...0.33.0) --- updated-dependencies: - dependency-name: egui dependency-version: 0.33.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- example/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 508dcdd..0dd6367 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["egui", "egui-widget", "filesystem", "gui", "input"] categories = ["gui"] [dependencies] -egui = "0.32.1" +egui = "0.33.0" [workspace] members = ["example"] diff --git a/example/Cargo.toml b/example/Cargo.toml index 5cef69a..a187c52 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" publish = false [dependencies] -egui = "0.32.1" +egui = "0.33.0" eframe = "0.32.1" egui_path_picker = { path = "../" } wasm-bindgen-futures = "0.4.50"