From ffb2c888b22b5681262fdcce34ed5728f6460d74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 12:59:22 +0000 Subject: [PATCH] build(deps): Bump gdbstub from 0.6.6 to 0.7.0 Bumps [gdbstub](https://github.com/daniel5151/gdbstub) from 0.6.6 to 0.7.0. - [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.6...0.7.0) --- updated-dependencies: - dependency-name: gdbstub dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 ++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b80a6fa..9fcf5f62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -419,13 +419,27 @@ dependencies = [ "paste", ] +[[package]] +name = "gdbstub" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09a8b954f9d02b74fe8e89a1c77bd9a6b8206713ebf1b272bfad9573b4a86f88" +dependencies = [ + "bitflags 2.4.1", + "cfg-if", + "log", + "managed", + "num-traits", + "paste", +] + [[package]] name = "gdbstub_arch" version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eecb536c55c43593a00dde9074dbbdb0e81ce5f20dbca921400f8779c21dea9c" dependencies = [ - "gdbstub", + "gdbstub 0.6.6", "num-traits", ] @@ -1119,7 +1133,7 @@ dependencies = [ "criterion", "either", "env_logger", - "gdbstub", + "gdbstub 0.7.0", "gdbstub_arch", "hermit-entry", "kvm-bindings", diff --git a/Cargo.toml b/Cargo.toml index 97ab48d8..e0fa1e9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ clap = { version = "4.4", features = ["derive", "env"] } core_affinity = "0.8" either = "1.9" env_logger = "0.10" -gdbstub = "0.6" +gdbstub = "0.7" gdbstub_arch = "0.2" hermit-entry = { version = "0.9", features = ["loader"] } lazy_static = "1.4"