diff --git a/Cargo.lock b/Cargo.lock index 0d84035b9..bf51e63c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -757,7 +757,7 @@ dependencies = [ "mio", "parking_lot", "rustix", - "signal-hook", + "signal-hook 0.3.18", "signal-hook-mio", "winapi", ] @@ -2607,6 +2607,16 @@ dependencies = [ "signal-hook-registry", ] +[[package]] +name = "signal-hook" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a37d01603c37b5466f808de79f845c7116049b0579adb70a6b7d47c1fa3a952" +dependencies = [ + "libc", + "signal-hook-registry", +] + [[package]] name = "signal-hook-mio" version = "0.2.5" @@ -2615,7 +2625,7 @@ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc" dependencies = [ "libc", "mio", - "signal-hook", + "signal-hook 0.3.18", ] [[package]] @@ -3206,7 +3216,7 @@ dependencies = [ "gcd", "libc", "nix", - "signal-hook", + "signal-hook 0.4.1", "tempfile", "thiserror 2.0.17", "uucore", diff --git a/Cargo.toml b/Cargo.toml index d6737d16d..80af38b85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -369,7 +369,7 @@ same-file = "1.0.6" self_cell = "1.0.4" # FIXME we use the exact version because the new 0.5.3 requires an MSRV of 1.88 selinux = "=0.5.2" -signal-hook = "0.3.17" +signal-hook = "0.4.1" tempfile = "3.15.0" terminal_size = "0.4.0" textwrap = { version = "0.16.1", features = ["terminal_size"] }