From 1f3321c50e65cc8f13c914d58e9da2d2a3574aa5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jun 2022 23:17:16 +0000 Subject: [PATCH] build: bump gdbstub from 0.6.1 to 0.6.2 Bumps [gdbstub](https://github.com/daniel5151/gdbstub) from 0.6.1 to 0.6.2. - [Release notes](https://github.com/daniel5151/gdbstub/releases) - [Changelog](https://github.com/daniel5151/gdbstub/blob/master/CHANGELOG.md) - [Commits](https://github.com/daniel5151/gdbstub/compare/0.6.1...0.6.2) --- updated-dependencies: - dependency-name: gdbstub dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- vmm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e74d50f0..c28219b04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -277,9 +277,9 @@ checksum = "b643857cf70949306b81d7e92cb9d47add673868edac9863c4a49c42feaf3f1e" [[package]] name = "gdbstub" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa2ca5d6b045de372cef3991f873389b421b4cabcfbe52f7787fae8b8b37906" +checksum = "1c1f9371c87c11642ee94dcf92cb48b1484ba250b8e8bff3df71c28651f3f4e7" dependencies = [ "bitflags", "cfg-if", diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 9495c801c..fb6fc8a7c 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -26,7 +26,7 @@ clap = "3.1.18" devices = { path = "../devices" } epoll = "4.3.1" event_monitor = { path = "../event_monitor" } -gdbstub = { version = "0.6.1", optional = true } +gdbstub = { version = "0.6.2", optional = true } gdbstub_arch = { version = "0.2.2", optional = true } hypervisor = { path = "../hypervisor" } lazy_static = "1.4.0"