diff --git a/Cargo.lock b/Cargo.lock index 64338793a..264410830 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.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "775cfde491852059e386c4e1deb4aef381c617dc364184c6f6afee99b87c402b" +dependencies = [ + "emath 0.29.1", ] [[package]] @@ -2154,8 +2163,20 @@ 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.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53eafabcce0cb2325a59a98736efe0bf060585b437763f8c476957fb274bb974" +dependencies = [ + "ahash", + "emath 0.29.1", + "epaint 0.29.1", "nohash-hasher", ] @@ -2174,6 +2195,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "emath" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1fe0049ce51d0fb414d029e668dd72eb30bc2b739bf34296ed97bd33df544f3" + [[package]] name = "encase" version = "0.8.0" @@ -2230,12 +2257,33 @@ dependencies = [ "ab_glyph", "ahash", "bytemuck", - "ecolor", - "emath", + "ecolor 0.28.1", + "emath 0.28.1", "nohash-hasher", "parking_lot", ] +[[package]] +name = "epaint" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a32af8da821bd4f43f2c137e295459ee2e1661d87ca8779dfa0eaf45d870e20f" +dependencies = [ + "ab_glyph", + "ahash", + "ecolor 0.29.1", + "emath 0.29.1", + "epaint_default_fonts", + "nohash-hasher", + "parking_lot", +] + +[[package]] +name = "epaint_default_fonts" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "483440db0b7993cf77a20314f08311dbe95675092405518c0677aa08c151a3ea" + [[package]] name = "equivalent" version = "1.0.1" @@ -4724,7 +4772,7 @@ dependencies = [ "clap", "couch_rs", "dialoguer", - "egui", + "egui 0.29.1", "futures", "os_info", "rand", diff --git a/sandpolis/Cargo.toml b/sandpolis/Cargo.toml index 889528a10..693048378 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.29", optional = true } # Agent dependencies sysinfo = { version = "0.30.13", optional = true }