From 96528f84f95cf9e6006b2192f6f693da04e5418c Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Thu, 10 Jul 2025 19:00:26 +0000 Subject: [PATCH] build: Bump gdbstub from 0.7.1 to 0.7.6 Bumps [gdbstub](https://github.com/daniel5151/gdbstub) from 0.7.1 to 0.7.6. - [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.7.1...0.7.6) --- updated-dependencies: - dependency-name: gdbstub dependency-version: 0.7.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: Bo Chen --- Cargo.lock | 4 ++-- fuzz/Cargo.lock | 4 ++-- vmm/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1dfcd3afe..7acf24989 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -824,9 +824,9 @@ dependencies = [ [[package]] name = "gdbstub" -version = "0.7.1" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6341b3480afbb34eaefc7f92713bc92f2d83e338aaa1c44192f9c2956f4a4903" +checksum = "71d66e32caf5dd59f561be0143e413e01d651bd8498eb9aa0be8c482c81c8d31" dependencies = [ "bitflags 2.9.0", "cfg-if", diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 85596958c..4ea15fff3 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -403,9 +403,9 @@ checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" [[package]] name = "gdbstub" -version = "0.7.2" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbcc892208d6998fb57e7c3e05883def66f8130924bba066beb0cfe71566a9f6" +checksum = "71d66e32caf5dd59f561be0143e413e01d651bd8498eb9aa0be8c482c81c8d31" dependencies = [ "bitflags 2.9.0", "cfg-if", diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 342260c0d..813d74f35 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -40,7 +40,7 @@ epoll = "4.3.3" event_monitor = { path = "../event_monitor" } flume = "0.11.1" futures = { version = "0.3.31", optional = true } -gdbstub = { version = "0.7.1", optional = true } +gdbstub = { version = "0.7.6", optional = true } gdbstub_arch = { version = "0.3.0", optional = true } hex = { version = "0.4.3", optional = true } hypervisor = { path = "../hypervisor" }