From 0b15e378c73cba309f9b5bfc4b48da091db6fce9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Aug 2022 01:37:42 +0000 Subject: [PATCH] build: bump gdbstub_arch from 0.2.3 to 0.2.4 Bumps [gdbstub_arch](https://github.com/daniel5151/gdbstub) from 0.2.3 to 0.2.4. - [Release notes](https://github.com/daniel5151/gdbstub/releases) - [Changelog](https://github.com/daniel5151/gdbstub/blob/master/CHANGELOG.md) - [Commits](https://github.com/daniel5151/gdbstub/commits) --- updated-dependencies: - dependency-name: gdbstub_arch 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 46c25eea7..158717aef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -331,9 +331,9 @@ dependencies = [ [[package]] name = "gdbstub_arch" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c24f469ba9556c5a063d6df35a8a338025fccf96ecae44f330a156b686f7a268" +checksum = "eecb536c55c43593a00dde9074dbbdb0e81ce5f20dbca921400f8779c21dea9c" dependencies = [ "gdbstub", "num-traits", diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index dcd412e64..bcd2cc549 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -27,7 +27,7 @@ devices = { path = "../devices" } epoll = "4.3.1" event_monitor = { path = "../event_monitor" } gdbstub = { version = "0.6.3", optional = true } -gdbstub_arch = { version = "0.2.3", optional = true } +gdbstub_arch = { version = "0.2.4", optional = true } hypervisor = { path = "../hypervisor" } libc = "0.2.132" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }