diff --git a/Cargo.lock b/Cargo.lock index b2735a6..f31a8d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "ahash" @@ -343,7 +343,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "signal-hook", + "signal-hook 0.4.4", "signal-hook-tokio", "thiserror", "tokio", @@ -1458,6 +1458,16 @@ dependencies = [ "signal-hook-registry", ] +[[package]] +name = "signal-hook" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a0c28ca5908dbdbcd52e6fdaa00358ab88637f8ab33e1f188dd510eb44b53d" +dependencies = [ + "libc", + "signal-hook-registry", +] + [[package]] name = "signal-hook-registry" version = "1.4.0" @@ -1475,7 +1485,7 @@ checksum = "213241f76fb1e37e27de3b6aa1b068a2c333233b59cca6634f634b80a27ecf1e" dependencies = [ "futures-core", "libc", - "signal-hook", + "signal-hook 0.3.13", "tokio", ] diff --git a/libs/utils/cap/Cargo.toml b/libs/utils/cap/Cargo.toml index 60f0fb1..365c2a0 100644 --- a/libs/utils/cap/Cargo.toml +++ b/libs/utils/cap/Cargo.toml @@ -15,7 +15,7 @@ schemars = "0.8" serde = "1" serde_json = "1" serde_yaml = "0.8" -signal-hook = "0.3" +signal-hook = "0.4" signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } thiserror = "1" tokio = { version = "1", features = ["rt-multi-thread"] }