Skip to content

Commit

Permalink
Bump deps and fix a clippy lint
Browse files Browse the repository at this point in the history
Signed-off-by: Visual Ehrmanntraut <[email protected]>
  • Loading branch information
VisualEhrmanntraut committed Mar 21, 2024
1 parent 00ce711 commit 6cbae48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ egui = { version = "0.26.2", default-features = false, features = [
egui_extras = "0.26.2"
hex = "0.4.3"
plist = "1.6.0"
rfd = "0.14.0"
rfd = "0.14.1"
serde = { version = "1.0.197", features = ["derive"] }
egui-modal = "0.3.4"
egui-modal = "0.3.5"

[target.'cfg(target_os = "macos")'.dependencies]
icrate = { version = "0.1.0", features = [
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ impl PlistEntry {
|val| {
if !dict.contains_key(&val) {
dict.insert(val.clone(), dict.get(k).unwrap().clone());
*path.last_mut().unwrap() = val.clone();
path.last_mut().unwrap().clone_from(&val);
dict.remove(k);
}
val
Expand Down

0 comments on commit 6cbae48

Please sign in to comment.