Cargo.toml: Update to zbus 5

This commit is contained in:
Vicki Pfau 2024-11-07 17:20:57 -08:00
parent bdb2d26e2f
commit a2af4d1bc5
29 changed files with 100 additions and 385 deletions

View file

@ -194,11 +194,7 @@ async fn get_all_properties(conn: &Connection) -> Result<()> {
}
_ => continue,
};
properties.extend(
properties_proxy
.get_all(zvariant::Optional::from(Some(name)))
.await?,
);
properties.extend(properties_proxy.get_all(name).await?);
}
for key in properties.keys().sorted() {
let value = &properties[key];