From 5571c6af2d42a3b501c6b84af8749883a0dbafda Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 1 May 2020 16:24:30 +0000 Subject: [PATCH] build(deps): bump signal-hook from 0.1.13 to 0.1.14 Bumps [signal-hook](https://github.com/vorner/signal-hook) from 0.1.13 to 0.1.14. - [Release notes](https://github.com/vorner/signal-hook/releases) - [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md) - [Commits](https://github.com/vorner/signal-hook/compare/v0.1.13...v0.1.14) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 4 ++-- vmm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c2ca92829..3c7deecc1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1029,9 +1029,9 @@ dependencies = [ [[package]] name = "signal-hook" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10b9f3a1686a29f53cfd91ee5e3db3c12313ec02d33765f02c1a9645a1811e2c" +checksum = "7c0893246f276ba1aac4983fb8711dad108e2886fd76bf618a382ab4e30e5bec" dependencies = [ "libc", "signal-hook-registry", diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index cc38e643b..a5b1771d0 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -41,7 +41,7 @@ vm-memory = { version = "0.2.0", features = ["backend-mmap", "backend-atomic"] } vm-migration = { path = "../vm-migration" } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] } -signal-hook = "0.1.13" +signal-hook = "0.1.14" tempfile = "3.1.0" [dependencies.linux-loader]