From 335a404fad085b40f2fb98aed0e81ce6ad6faa3b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:02:10 +0000 Subject: [PATCH] Bump egui-winit from 0.29.1 to 0.30.0 Bumps [egui-winit](https://github.com/emilk/egui) from 0.29.1 to 0.30.0. - [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.29.1...0.30.0) --- updated-dependencies: - dependency-name: egui-winit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 68 ++++++++++++++++++++++++++++++++++++++++++++---------- Cargo.toml | 2 +- 2 files changed, 57 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f14e311..541f40b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -572,7 +572,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "775cfde491852059e386c4e1deb4aef381c617dc364184c6f6afee99b87c402b" dependencies = [ "bytemuck", - "emath", + "emath 0.29.1", +] + +[[package]] +name = "ecolor" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d72e9c39f6e11a2e922d04a34ec5e7ef522ea3f5a1acfca7a19d16ad5fe50f5" +dependencies = [ + "emath 0.30.0", ] [[package]] @@ -582,10 +591,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53eafabcce0cb2325a59a98736efe0bf060585b437763f8c476957fb274bb974" dependencies = [ "ahash", - "emath", - "epaint", + "emath 0.29.1", + "epaint 0.29.1", + "nohash-hasher", +] + +[[package]] +name = "egui" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "252d52224d35be1535d7fd1d6139ce071fb42c9097773e79f7665604f5596b5e" +dependencies = [ + "ahash", + "emath 0.30.0", + "epaint 0.30.0", "log", "nohash-hasher", + "profiling", ] [[package]] @@ -597,8 +619,8 @@ dependencies = [ "ahash", "bytemuck", "document-features", - "egui", - "epaint", + "egui 0.29.1", + "epaint 0.29.1", "log", "thiserror", "type-map", @@ -609,13 +631,14 @@ dependencies = [ [[package]] name = "egui-winit" -version = "0.29.1" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a9c430f4f816340e8e8c1b20eec274186b1be6bc4c7dfc467ed50d57abc36c6" +checksum = "1e84c2919cd9f3a38a91e8f84ac6a245c19251fd95226ed9fae61d5ea564fce3" dependencies = [ "ahash", - "egui", + "egui 0.30.0", "log", + "profiling", "raw-window-handle", "web-time", "winit", @@ -630,6 +653,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "emath" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4fe73c1207b864ee40aa0b0c038d6092af1030744678c60188a05c28553515d" + [[package]] name = "env_filter" version = "0.1.2" @@ -662,12 +691,27 @@ dependencies = [ "ab_glyph", "ahash", "bytemuck", - "ecolor", - "emath", + "ecolor 0.29.1", + "emath 0.29.1", "epaint_default_fonts", + "nohash-hasher", + "parking_lot", +] + +[[package]] +name = "epaint" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5666f8d25236293c966fbb3635eac18b04ad1914e3bab55bc7d44b9980cafcac" +dependencies = [ + "ab_glyph", + "ahash", + "ecolor 0.30.0", + "emath 0.30.0", "log", "nohash-hasher", "parking_lot", + "profiling", ] [[package]] @@ -1122,7 +1166,7 @@ name = "lib" version = "0.1.0" dependencies = [ "bytemuck", - "egui", + "egui 0.29.1", "log", "nanorand", "pollster", @@ -2679,7 +2723,7 @@ dependencies = [ "cfg-if", "console_error_panic_hook", "console_log", - "egui", + "egui 0.29.1", "egui-wgpu", "egui-winit", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index e3bb0cc..e53e557 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ env_logger = "0.11.5" wasm-bindgen = "0.2.92" egui-wgpu = { version = "0.29.1", features = ["winit"] } -egui-winit = { version = "0.29.1", default-features = false } +egui-winit = { version = "0.30.0", default-features = false } cfg-if = "1.0.0"