Update EGUI to 0.33

This commit is contained in:
Piotr Siuszko 2025-10-13 11:08:53 +02:00
parent dc60460476
commit 5e5d7e8113
1 changed files with 4 additions and 4 deletions

View File

@ -14,22 +14,22 @@ profiler = ["dep:puffin", "dep:puffin_http", "dep:profiling"]
accesskit = ["eframe/accesskit"] accesskit = ["eframe/accesskit"]
[dependencies] [dependencies]
egui = "0.32" egui = "0.33"
eframe = { version = "0.32", default-features = false, features = [ eframe = { version = "0.33", default-features = false, features = [
"persistence", "persistence",
# "accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies. # "accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts. "default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu". "glow", # Use the glow rendering backend. Alternative: "wgpu".
] } ] }
log = "0.4" log = "0.4"
egui_json_tree = "0.13" egui_json_tree = "0.14"
# You only need serde if you want app persistence: # You only need serde if you want app persistence:
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
texture_packer = { workspace = true } texture_packer = { workspace = true }
image = { workspace = true } image = { workspace = true }
egui_extras = { version = "0.32", features = ["all_loaders"] } egui_extras = { version = "0.33", features = ["all_loaders"] }
rfd = { version = "0.15", features = [] } rfd = { version = "0.15", features = [] }
anyhow = "1" anyhow = "1"
crossbeam = "0.8" crossbeam = "0.8"