diff --git a/Cargo.lock b/Cargo.lock index b2735a6..6eb077d 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.3.13", "signal-hook-tokio", "thiserror", "tokio", @@ -1458,6 +1458,16 @@ dependencies = [ "signal-hook-registry", ] +[[package]] +name = "signal-hook" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b57709da74f9ff9f4a27dce9526eec25ca8407c45a7887243b031a58935fb8e" +dependencies = [ + "libc", + "signal-hook-registry", +] + [[package]] name = "signal-hook-registry" version = "1.4.0" @@ -1469,13 +1479,13 @@ dependencies = [ [[package]] name = "signal-hook-tokio" -version = "0.3.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213241f76fb1e37e27de3b6aa1b068a2c333233b59cca6634f634b80a27ecf1e" +checksum = "e513e435a8898a0002270f29d0a708b7879708fb5c4d00e46983ca2d2d378cf0" dependencies = [ "futures-core", "libc", - "signal-hook", + "signal-hook 0.4.3", "tokio", ] diff --git a/libs/utils/cap/Cargo.toml b/libs/utils/cap/Cargo.toml index 60f0fb1..7920f3a 100644 --- a/libs/utils/cap/Cargo.toml +++ b/libs/utils/cap/Cargo.toml @@ -16,7 +16,7 @@ serde = "1" serde_json = "1" serde_yaml = "0.8" signal-hook = "0.3" -signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } +signal-hook-tokio = { version = "0.4", features = ["futures-v0_3"] } thiserror = "1" tokio = { version = "1", features = ["rt-multi-thread"] } tracing = "0.1"