Skip to content

Commit

Permalink
chore(deps): bump eframe from 0.27.2 to 0.28.1
Browse files Browse the repository at this point in the history
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](emilk/egui@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>
  • Loading branch information
dependabot[bot] authored and LGUG2Z committed Jul 9, 2024
1 parent 9414466 commit 5b997b6
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 93 deletions.
144 changes: 54 additions & 90 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions komorebi-gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
egui_extras = { version = "0.27" }
eframe = "0.27"
egui_extras = { version = "0.28" }
eframe = "0.28"
komorebi-client = { path = "../komorebi-client" }
serde_json = "1"
random_word = { version = "0.4.3", features = ["en"] }
Expand Down
2 changes: 1 addition & 1 deletion komorebi-gui/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)))),
);
}

Expand Down

0 comments on commit 5b997b6

Please sign in to comment.