flake.lock, Cargo.{toml,lock}: bump deps

This commit is contained in:
2026-04-20 22:00:31 +09:00
parent 9361dcf941
commit f1eced9e23
5 changed files with 224 additions and 257 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ async fn main() -> anyhow::Result<()> {
)?;
let fd_map: HashMap<String, OwnedFd> = HashMap::from_iter(
sd_notify::listen_fds_with_names(false)?.map(|(fd_num, name)| {
sd_notify::listen_fds_with_names()?.map(|(fd_num, name)| {
(
name.clone(),
// SAFETY: please don't mess around with file descriptors in random places
@@ -71,7 +71,7 @@ async fn main() -> anyhow::Result<()> {
client_server_token_.cancelled().await;
tracing::info!("RWHOD client-server is now accepting connections");
#[cfg(feature = "systemd")]
sd_notify::notify(true, &[sd_notify::NotifyState::Ready]).ok();
sd_notify::notify(&[sd_notify::NotifyState::Ready]).ok();
Ok::<(), anyhow::Error>(())
});