update egui with hint fix

This commit is contained in:
Simon Gardling 2025-12-03 18:19:27 -05:00
parent 8b7e3b3009
commit 7f9a962ff7
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
3 changed files with 9 additions and 9 deletions

14
Cargo.lock generated
View File

@ -698,7 +698,7 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
[[package]] [[package]]
name = "ecolor" name = "ecolor"
version = "0.33.2" version = "0.33.2"
source = "git+https://github.com/titaniumtown/egui.git#e119428293e92ca97d48cfd569823d15f2d03023" source = "git+https://github.com/titaniumtown/egui.git#63106bc9faab805197ba88820d6f11bc8c5c4657"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"emath", "emath",
@ -708,7 +708,7 @@ dependencies = [
[[package]] [[package]]
name = "eframe" name = "eframe"
version = "0.33.2" version = "0.33.2"
source = "git+https://github.com/titaniumtown/egui.git#e119428293e92ca97d48cfd569823d15f2d03023" source = "git+https://github.com/titaniumtown/egui.git#63106bc9faab805197ba88820d6f11bc8c5c4657"
dependencies = [ dependencies = [
"ahash", "ahash",
"bytemuck", "bytemuck",
@ -741,7 +741,7 @@ dependencies = [
[[package]] [[package]]
name = "egui" name = "egui"
version = "0.33.2" version = "0.33.2"
source = "git+https://github.com/titaniumtown/egui.git#e119428293e92ca97d48cfd569823d15f2d03023" source = "git+https://github.com/titaniumtown/egui.git#63106bc9faab805197ba88820d6f11bc8c5c4657"
dependencies = [ dependencies = [
"accesskit", "accesskit",
"ahash", "ahash",
@ -759,7 +759,7 @@ dependencies = [
[[package]] [[package]]
name = "egui-winit" name = "egui-winit"
version = "0.33.2" version = "0.33.2"
source = "git+https://github.com/titaniumtown/egui.git#e119428293e92ca97d48cfd569823d15f2d03023" source = "git+https://github.com/titaniumtown/egui.git#63106bc9faab805197ba88820d6f11bc8c5c4657"
dependencies = [ dependencies = [
"arboard", "arboard",
"bytemuck", "bytemuck",
@ -779,7 +779,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_glow" name = "egui_glow"
version = "0.33.2" version = "0.33.2"
source = "git+https://github.com/titaniumtown/egui.git#e119428293e92ca97d48cfd569823d15f2d03023" source = "git+https://github.com/titaniumtown/egui.git#63106bc9faab805197ba88820d6f11bc8c5c4657"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"egui", "egui",
@ -810,7 +810,7 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
[[package]] [[package]]
name = "emath" name = "emath"
version = "0.33.2" version = "0.33.2"
source = "git+https://github.com/titaniumtown/egui.git#e119428293e92ca97d48cfd569823d15f2d03023" source = "git+https://github.com/titaniumtown/egui.git#63106bc9faab805197ba88820d6f11bc8c5c4657"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"serde", "serde",
@ -830,7 +830,7 @@ dependencies = [
[[package]] [[package]]
name = "epaint" name = "epaint"
version = "0.33.2" version = "0.33.2"
source = "git+https://github.com/titaniumtown/egui.git#e119428293e92ca97d48cfd569823d15f2d03023" source = "git+https://github.com/titaniumtown/egui.git#63106bc9faab805197ba88820d6f11bc8c5c4657"
dependencies = [ dependencies = [
"ab_glyph", "ab_glyph",
"ahash", "ahash",

View File

@ -8,8 +8,8 @@ use std::{
}; };
use epaint::{ use epaint::{
FontFamily,
text::{FontData, FontDefinitions, FontTweak}, text::{FontData, FontDefinitions, FontTweak},
FontFamily,
}; };
use run_script::ScriptOptions; use run_script::ScriptOptions;

View File

@ -45,7 +45,7 @@
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
outputHashes = { outputHashes = {
"ecolor-0.33.2" = "sha256-6ojmGGKH0CAZdyQx8nBIvvKXGIRoiB5Gxb9PNTzm0FY="; "ecolor-0.33.2" = "sha256-jdQK55yKZptadwosrJXIhoQDGNeELQmPExWRsGc0VG0=";
"egui_plot-0.34.0" = "sha256-CfqrpAnLNcB3StuZ9YSDTWih8OUVEa9SJi9RwS1i4ok="; "egui_plot-0.34.0" = "sha256-CfqrpAnLNcB3StuZ9YSDTWih8OUVEa9SJi9RwS1i4ok=";
}; };
}; };