From e9ce0759d6a6fd7f1af80ce59db6461d8e8632f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:45:58 +0000 Subject: [PATCH] Update egui requirement from 0.26 to 0.27 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/master/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.26.0...0.27.0) --- updated-dependencies: - dependency-name: egui dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- rend3-egui/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3c4fbbce..7b81995d 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -20,7 +20,7 @@ path = "src/main.rs" # error handling anyhow = "1" # The egui immediate mode gui library -egui = "0.26" +egui = "0.27" # Winit integration with egui (turn off the clipboard feature) egui-winit = { version = "0.26", default-features = false, features = ["links", "wayland"] } # logging diff --git a/rend3-egui/Cargo.toml b/rend3-egui/Cargo.toml index d4697a9f..089b1e2b 100644 --- a/rend3-egui/Cargo.toml +++ b/rend3-egui/Cargo.toml @@ -12,7 +12,7 @@ categories = ["game-development", "graphics", "rendering", "rendering::engine", rust-version = "1.71" [dependencies] -egui = "0.26" +egui = "0.27" egui-wgpu = "0.26" glam = "0.25" rend3 = { version = "^0.3.0", path = "../rend3" }