Skip to content

Commit

Permalink
desktop: Switch to the egui 0.30.0 release from git master
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Dec 22, 2024
1 parent 0cd28e9 commit 0a368a0
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 24 deletions.
45 changes: 29 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
naga = { version = "23.1.0", features = ["wgsl-out"] }
wgpu = "23.0.1"
egui = { git = "https://github.com/emilk/egui.git", branch = "master" }
egui = "0.30.0"
clap = { version = "4.5.23", features = ["derive"] }
cpal = "0.15.3"
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ hashbrown = { version = "0.14.5", features = ["raw"] }
scopeguard = "1.2.0"
fluent-templates = "0.11.0"
egui = { workspace = true, optional = true }
egui_extras = { git = "https://github.com/emilk/egui.git", branch = "master", default-features = false, optional = true }
egui_extras = { version = "0.30.0", default-features = false, optional = true }
png = { version = "0.17.15", optional = true }
flv-rs = { path = "../flv" }
async-channel = { workspace = true }
Expand Down
3 changes: 0 additions & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,6 @@ unknown-git = "deny"
# github.com organizations to allow git sources for
github = [
"ruffle-rs",
# TODO: Remove once a release with https://github.com/emilk/egui/pull/5330
# (the wgpu bump to 23.0.0) in it is out.
"emilk",
]

[advisories]
Expand Down
6 changes: 3 additions & 3 deletions desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ workspace = true
clap = { workspace = true }
cpal = { workspace = true }
egui = { workspace = true }
egui_extras = { git = "https://github.com/emilk/egui.git", branch = "master", default-features = false, features = ["image"] }
egui-wgpu = { git = "https://github.com/emilk/egui.git", branch = "master", features = ["winit"] }
egui_extras = { version = "0.30.0", default-features = false, features = ["image"] }
egui-wgpu = { version = "0.30.0", features = ["winit"] }
image = { workspace = true, features = ["png"] }
egui-winit = { git = "https://github.com/emilk/egui.git", branch = "master" }
egui-winit = "0.30.0"
fontdb = "0.23"
ruffle_core = { path = "../core", features = ["audio", "clap", "mp3", "aac", "nellymoser", "default_compatibility_rules", "egui"] }
ruffle_render = { path = "../render", features = ["clap"] }
Expand Down

0 comments on commit 0a368a0

Please sign in to comment.