Skip to content

Commit

Permalink
Merge pull request #173 from alexespencer/patch-1
Browse files Browse the repository at this point in the history
Bump egui
  • Loading branch information
podusowski authored Jul 6, 2024
2 parents 708d4c4 + 27bfa08 commit ee7a1b7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ members = [
resolver = "2"

[workspace.package]
version = "0.23.0"
version = "0.24.0"

[workspace.dependencies]
image = { version = "0.25", default-features = false }
log = "0.4"
egui = "0.27"
egui_extras = { version = "0.27", features = ["svg"] }
eframe = "0.27"
egui-winit = "0.27"
egui = "0.28"
egui_extras = { version = "0.28", features = ["svg"] }
eframe = "0.28"
egui-winit = "0.28"
2 changes: 1 addition & 1 deletion demo_android/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn android_main(
eframe::run_native(
"Walkers",
options,
Box::new(|cc| Box::new(demo::MyApp::new(cc.egui_ctx.clone()))),
Box::new(|cc| Ok(Box::new(demo::MyApp::new(cc.egui_ctx.clone())))),
)?;

Ok(())
Expand Down
2 changes: 1 addition & 1 deletion demo_native/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn main() -> Result<(), eframe::Error> {
eframe::run_native(
"MyApp",
Default::default(),
Box::new(|cc| Box::new(MyApp::new(cc.egui_ctx.clone()))),
Box::new(|cc| Ok(Box::new(MyApp::new(cc.egui_ctx.clone())))),
)
}

Expand Down
2 changes: 1 addition & 1 deletion demo_web/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fn main() {
.start(
"the_canvas_id", // hardcode it
web_options,
Box::new(|cc| Box::new(demo::MyApp::new(cc.egui_ctx.clone()))),
Box::new(|cc| Ok(Box::new(demo::MyApp::new(cc.egui_ctx.clone())))),
)
.await
.expect("failed to start eframe");
Expand Down

0 comments on commit ee7a1b7

Please sign in to comment.