From 4cd2eccf2f58fcac073c1abe0d89b1d7d9b78ba1 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 11 May 2020 17:49:36 +0000 Subject: [PATCH] build(deps): bump signal-hook from 0.1.14 to 0.1.15 Bumps [signal-hook](https://github.com/vorner/signal-hook) from 0.1.14 to 0.1.15. - [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.14...v0.1.15) 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 f11742711..7543fd13b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1064,9 +1064,9 @@ dependencies = [ [[package]] name = "signal-hook" -version = "0.1.14" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c0893246f276ba1aac4983fb8711dad108e2886fd76bf618a382ab4e30e5bec" +checksum = "8ff2db2112d6c761e12522c65f7768548bd6e8cd23d2a9dae162520626629bd6" dependencies = [ "libc", "signal-hook-registry", diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 5907ecae3..8f7d1e980 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.14" +signal-hook = "0.1.15" tempfile = "3.1.0" [dependencies.linux-loader]