We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c6fe3d commit 6180c0aCopy full SHA for 6180c0a
examples/turtlesim_rs/Cargo.toml
@@ -4,8 +4,8 @@ version = "0.1.0"
4
edition = "2021"
5
6
[dependencies]
7
-eframe = "0.29.1"
8
-egui_extras = { version = "0.29.1", features = ["all_loaders"]}
+eframe = "0.27.0"
+egui_extras = { version = "0.27.0", features = ["all_loaders"]}
9
tiny-skia = "0.11.4"
10
rand = "0.8.5"
11
termion = "1.5"
examples/turtlesim_rs/src/turtlesim.rs
@@ -21,7 +21,7 @@ fn main() {
21
native_options,
22
Box::new(|cc| {
23
install_image_loaders(&cc.egui_ctx);
24
- Ok(Box::new(MyEguiApp::new(cc)))
+ Box::new(MyEguiApp::new(cc))
25
}),
26
);
27
}
0 commit comments