From e6054ca67aca2a5b3b481006c5f99e1fb4f0bd9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:37:55 +0000 Subject: [PATCH] build(deps): bump egui from 0.28.1 to 0.30.0 Bumps [egui](https://github.com/emilk/egui) from 0.28.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.28.1...0.30.0) --- updated-dependencies: - dependency-name: egui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 64 +++++++++++++++++++++++++++++++++++++++----- sandpolis/Cargo.toml | 2 +- 2 files changed, 58 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 64338793a..762bd2f84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -774,7 +774,7 @@ dependencies = [ "bytemuck", "console_log", "crossbeam-channel", - "egui", + "egui 0.28.1", "js-sys", "log", "thread_local", @@ -2144,7 +2144,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e6b451ff1143f6de0f33fc7f1b68fecfd2c7de06e104de96c4514de3f5396f8" dependencies = [ "bytemuck", - "emath", + "emath 0.28.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]] @@ -2154,11 +2163,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20c97e70a2768de630f161bb5392cbd3874fcf72868f14df0e002e82e06cb798" dependencies = [ "ahash", - "emath", - "epaint", + "emath 0.28.1", + "epaint 0.28.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", + "nohash-hasher", + "profiling", +] + [[package]] name = "either" version = "1.13.0" @@ -2174,6 +2196,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "emath" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4fe73c1207b864ee40aa0b0c038d6092af1030744678c60188a05c28553515d" + [[package]] name = "encase" version = "0.8.0" @@ -2230,12 +2258,34 @@ dependencies = [ "ab_glyph", "ahash", "bytemuck", - "ecolor", - "emath", + "ecolor 0.28.1", + "emath 0.28.1", + "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", + "epaint_default_fonts", "nohash-hasher", "parking_lot", + "profiling", ] +[[package]] +name = "epaint_default_fonts" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66f6ddac3e6ac6fd4c3d48bb8b1943472f8da0f43a4303bcd8a18aa594401c80" + [[package]] name = "equivalent" version = "1.0.1" @@ -4724,7 +4774,7 @@ dependencies = [ "clap", "couch_rs", "dialoguer", - "egui", + "egui 0.30.0", "futures", "os_info", "rand", diff --git a/sandpolis/Cargo.toml b/sandpolis/Cargo.toml index 889528a10..6b328e502 100644 --- a/sandpolis/Cargo.toml +++ b/sandpolis/Cargo.toml @@ -38,7 +38,7 @@ rcgen = { version = "0.13.1", optional = true } bevy = { version = "0.14.0", optional = true } bevy_egui = { version = "0.28.0", optional = true } bevy_rapier2d = { version = "0.27.0", optional = true } -egui = { version = "0.28", optional = true } +egui = { version = "0.30", optional = true } # Agent dependencies sysinfo = { version = "0.30.13", optional = true }