From e60535ed3c9d01578c59946126ca75cc0d35dba6 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 5 Nov 2025 19:06:08 +0000 Subject: [PATCH] Update netstat2 to 0.11 for libc compatibility Fix compilation error with recent libc versions where tcp_info struct has changed. The netstat2 0.11 update includes compatibility fixes. --- pmoutils/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmoutils/Cargo.toml b/pmoutils/Cargo.toml index 9280a7c1..cd1380c2 100644 --- a/pmoutils/Cargo.toml +++ b/pmoutils/Cargo.toml @@ -6,6 +6,6 @@ edition = "2024" [dependencies] get_if_addrs = "0.5.3" os_info = "3.8" -netstat2 = "0.9" +netstat2 = "0.11" sysinfo = "0.30" users = "0.11"