Skip to content

Commit

Permalink
Fix compatibility with older Rust version (CI issue)
Browse files Browse the repository at this point in the history
- Downgraded dependencies to work with rust lower than 1.75.
  • Loading branch information
Abdelrahmanosama372 committed Dec 10, 2024
1 parent 9c6fe3d commit 6180c0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/turtlesim_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
eframe = "0.29.1"
egui_extras = { version = "0.29.1", features = ["all_loaders"]}
eframe = "0.27.0"
egui_extras = { version = "0.27.0", features = ["all_loaders"]}
tiny-skia = "0.11.4"
rand = "0.8.5"
termion = "1.5"
Expand Down
2 changes: 1 addition & 1 deletion examples/turtlesim_rs/src/turtlesim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fn main() {
native_options,
Box::new(|cc| {
install_image_loaders(&cc.egui_ctx);
Ok(Box::new(MyEguiApp::new(cc)))
Box::new(MyEguiApp::new(cc))
}),
);
}
Expand Down

0 comments on commit 6180c0a

Please sign in to comment.