chore(deps): bump eframe from 0.27.2 to 0.28.1

Bumps [eframe](https://github.com/emilk/egui) from 0.27.2 to 0.28.1.
- [Release notes](https://github.com/emilk/egui/releases)
- [Changelog](https://github.com/emilk/egui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emilk/egui/compare/0.27.2...0.28.1)

---
updated-dependencies:
- dependency-name: eframe
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2024-07-08 14:21:00 +00:00
committed by جاد
parent 9414466646
commit 5b997b6ea6
3 changed files with 57 additions and 93 deletions

View File

@@ -34,7 +34,7 @@ fn main() {
let _ = eframe::run_native(
"komorebi-gui",
native_options,
Box::new(|cc| Box::new(KomorebiGui::new(cc))),
Box::new(|cc| Ok(Box::new(KomorebiGui::new(cc)))),
);
}