diff --git a/rust/Cargo.lock b/rust/Cargo.lock index ddf5d5159..8d3475f7d 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1811,7 +1811,7 @@ dependencies = [ "libc", "netlink-packet-core", "netlink-packet-route", - "nix 0.28.0", + "nix 0.29.0", "ring", "rtnetlink", "socket-factory", @@ -1885,7 +1885,7 @@ dependencies = [ "keyring", "minidumper", "native-dialog", - "nix 0.28.0", + "nix 0.29.0", "output_vt100", "rand 0.8.5", "reqwest", @@ -1937,7 +1937,7 @@ dependencies = [ "known-folders", "libc", "mutants", - "nix 0.28.0", + "nix 0.29.0", "phoenix-channel", "resolv-conf", "rtnetlink", @@ -3750,7 +3750,6 @@ dependencies = [ "cfg-if", "cfg_aliases 0.1.1", "libc", - "memoffset 0.9.1", ] [[package]] diff --git a/rust/bin-shared/Cargo.toml b/rust/bin-shared/Cargo.toml index 32c1010e5..a621827c8 100644 --- a/rust/bin-shared/Cargo.toml +++ b/rust/bin-shared/Cargo.toml @@ -27,7 +27,7 @@ tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } libc = "0.2" netlink-packet-core = { version = "0.7", default-features = false } netlink-packet-route = { version = "0.19", default-features = false } -nix = { version = "0.28.0", features = ["socket"] } +nix = { version = "0.29.0", features = ["socket"] } rtnetlink = { workspace = true } zbus = "4.4" # Can't use `zbus`'s `tokio` feature here, or it will break toast popups all the way over in `gui-client`. diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index a5c429f31..55aa21f91 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -62,7 +62,7 @@ features = [ [target.'cfg(target_os = "linux")'.dependencies] dirs = "5.0.1" -nix = { version = "0.28.0", features = ["user"] } +nix = { version = "0.29.0", features = ["user"] } [target.'cfg(target_os = "macos")'.dependencies] diff --git a/rust/headless-client/Cargo.toml b/rust/headless-client/Cargo.toml index e4f35a47c..3cb3da8fe 100644 --- a/rust/headless-client/Cargo.toml +++ b/rust/headless-client/Cargo.toml @@ -43,7 +43,7 @@ mutants = "0.0.3" # Needed to mark functions as exempt from `cargo-mutants` test [target.'cfg(target_os = "linux")'.dependencies] dirs = "5.0.1" libc = "0.2.150" -nix = { version = "0.28.0", features = ["fs", "user", "socket"] } +nix = { version = "0.29.0", features = ["fs", "user", "socket"] } resolv-conf = "0.7.0" rtnetlink = { workspace = true } sd-notify = "0.4.2" # This is a pure Rust re-implementation, so it isn't vulnerable to CVE-2024-3094