Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sigoden committed Feb 2, 2024
1 parent aa80550 commit 64f0c09
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
anyhow = "1"
indexmap = "2.1.0"
indexmap = "2.2.0"
log = "0.4.20"
once_cell = "1.18.0"
rust-ini = "0.20.0"
Expand Down
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ impl App {
for id in cache_windows {
if windows_set.contains(id) {
state_windows.push(*id);
windows_set.remove(id);
windows_set.swap_remove(id);
}
}
state_windows.extend(windows_set);
Expand Down

0 comments on commit 64f0c09

Please sign in to comment.