From 9dfd3bfa92457e562ae5fa06170fc6712d45c49f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 03:34:33 +0000 Subject: [PATCH] build(deps): bump egui from 0.21.0 to 0.28.1 Bumps [egui](https://github.com/emilk/egui) from 0.21.0 to 0.28.1. - [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.21.0...0.28.1) --- updated-dependencies: - dependency-name: egui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 29 ++++++++++++++++------------- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b3bf7f8..fd0def2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -285,9 +285,12 @@ dependencies = [ [[package]] name = "ecolor" -version = "0.22.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e479a7fa3f23d4e794f8b2f8b3568dd4e47886ad1b12c9c095e141cb591eb63" +checksum = "2e6b451ff1143f6de0f33fc7f1b68fecfd2c7de06e104de96c4514de3f5396f8" +dependencies = [ + "emath 0.28.1", +] [[package]] name = "egui" @@ -302,12 +305,13 @@ dependencies = [ [[package]] name = "egui" -version = "0.22.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3aef8ec3ae1b772f340170c65bf27d5b8c28f543a0116c844d2ac08d01123e7" +checksum = "20c97e70a2768de630f161bb5392cbd3874fcf72868f14df0e002e82e06cb798" dependencies = [ "ahash", - "epaint 0.22.0", + "emath 0.28.1", + "epaint 0.28.1", "nohash-hasher", ] @@ -354,9 +358,9 @@ dependencies = [ [[package]] name = "emath" -version = "0.22.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3857d743a6e0741cdd60b622a74c7a36ea75f5f8f11b793b41d905d2c9721a4b" +checksum = "0a6a21708405ea88f63d8309650b4d77431f4bc28fb9d8e6f77d3963b51249e6" [[package]] name = "epaint" @@ -376,15 +380,14 @@ dependencies = [ [[package]] name = "epaint" -version = "0.22.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09333964d4d57f40a85338ba3ca5ed4716070ab184dcfed966b35491c5c64f3b" +checksum = "3f0dcc0a0771e7500e94cd1cb797bd13c9f23b9409bdc3c824e2cbc562b7fa01" dependencies = [ "ab_glyph", "ahash", - "atomic_refcell", - "ecolor 0.22.0", - "emath 0.22.0", + "ecolor 0.28.1", + "emath 0.28.1", "nohash-hasher", "parking_lot", ] @@ -992,7 +995,7 @@ name = "rapier-example" version = "0.1.0" dependencies = [ "crossbeam", - "egui 0.22.0", + "egui 0.28.1", "egui-macroquad", "macroquad", "rand", diff --git a/Cargo.toml b/Cargo.toml index 95be8d7..724b440 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ description = "Rapier Physics with Macroquad 🗡️ building a basic game physi [dependencies] crossbeam = "0.8.4" -egui = "0.22.0" +egui = "0.28.1" egui-macroquad = "0.15" macroquad = { version = "0.3.26", default-features = false } rand = "0.8.5"