From 54a176c920864c53000c66beed3d3e62cba22d5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:45:30 +0000 Subject: [PATCH] Update egui-winit requirement from 0.26 to 0.27 Updates the requirements on [egui-winit](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/master/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.26.0...0.27.0) --- updated-dependencies: - dependency-name: egui-winit dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3c4fbbce..b09a60df 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -22,7 +22,7 @@ anyhow = "1" # The egui immediate mode gui library egui = "0.26" # Winit integration with egui (turn off the clipboard feature) -egui-winit = { version = "0.26", default-features = false, features = ["links", "wayland"] } +egui-winit = { version = "0.27", default-features = false, features = ["links", "wayland"] } # logging env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] } # Linear algebra library