Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianEddy committed Feb 28, 2024
1 parent 4d93e5e commit 7c79e4e
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 @@ -18,10 +18,10 @@ categories = [
edition = '2021'

[target.'cfg(target_os = "linux")'.dependencies]
"zbus" = "3.14.1"
"zbus" = "4.1.2"

[target.'cfg(target_os = "windows")'.dependencies.windows]
version = '0.52.0'
version = '0.54.0'
features = [
'Win32_Foundation',
'Win32_Security',
Expand Down
2 changes: 1 addition & 1 deletion src/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn name_has_owner(name: &str) -> bool {
"NameHasOwner",
&(name),
);
return reply.and_then(|r| r.body()).unwrap_or(false);
return reply.and_then(|r| r.body().deserialize()).unwrap_or(false);
}
false
}
Expand Down

0 comments on commit 7c79e4e

Please sign in to comment.