From d9dba17c9afd692942620f6d37edcdb8d9f9b460 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Tue, 18 Aug 2026 14:54:21 +0800 Subject: [PATCH] Use latest rust-netlink crates Signed-off-by: Gris Ge --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4287b0b..83c4ead 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,9 @@ description = "linux audit via netlink" [dependencies] futures = "0.3.11" thiserror = "1" -netlink-packet-audit = { version = "0.5.1" } -netlink-packet-core = { version = "0.7" } -netlink-proto = { default-features = false, version = "0.11.2" } +netlink-packet-audit = { version = "0.7" } +netlink-packet-core = { version = "0.9" } +netlink-proto = { default-features = false, version = "0.13" } [features] default = ["tokio_socket"]