{flake.lock,Cargo.*}: bump
Build and test / check (push) Successful in 1m12s
Build and test / build (push) Successful in 1m40s
Build and test / test (push) Successful in 2m12s
Build and test / docs (push) Successful in 6m20s

This commit is contained in:
2026-07-20 17:29:29 +09:00
parent 3297d145b4
commit a89deefceb
9 changed files with 295 additions and 207 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ async fn main() -> anyhow::Result<()> {
return Ok(());
}
let mut conn = zlink::unix::connect("/run/roowho2/roowho2.varlink")
let mut conn = zlink::tokio::unix::connect("/run/roowho2/roowho2.varlink")
.await
.expect("Failed to connect to fingerd server");
+1 -1
View File
@@ -166,7 +166,7 @@ async fn client_server(
let std_socket =
unsafe { std::os::unix::net::UnixListener::from_raw_fd(socket_fd.as_raw_fd()) };
std_socket.set_nonblocking(true)?;
let zlink_listener = zlink::unix::Listener::try_from(OwnedFd::from(std_socket))?;
let zlink_listener = zlink::tokio::unix::Listener::try_from(OwnedFd::from(std_socket))?;
let client_server_task = varlink_client_server_task(
zlink_listener,
whod_status_store,
+1 -1
View File
@@ -65,7 +65,7 @@ async fn main() -> anyhow::Result<()> {
return Ok(());
}
let mut conn = zlink::unix::connect("/run/roowho2/roowho2.varlink")
let mut conn = zlink::tokio::unix::connect("/run/roowho2/roowho2.varlink")
.await
.expect("Failed to connect to rwhod server");
+1 -1
View File
@@ -45,7 +45,7 @@ async fn main() -> anyhow::Result<()> {
return Ok(());
}
let mut conn = zlink::unix::connect("/run/roowho2/roowho2.varlink")
let mut conn = zlink::tokio::unix::connect("/run/roowho2/roowho2.varlink")
.await
.expect("Failed to connect to rwhod server");