From 9c9921e8b170c1b47402c182ea4bcdd28f663ae7 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_arch from 0.2.4 to 0.3.0 Bumps [gdbstub_arch](https://github.com/daniel5151/gdbstub) from 0.2.4 to 0.3.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/commits/0.3.0) --- updated-dependencies: - dependency-name: gdbstub_arch dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b80a6fa..dc6963c0 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" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eecb536c55c43593a00dde9074dbbdb0e81ce5f20dbca921400f8779c21dea9c" +checksum = "4e3b1357bd3203fc09a6601327ae0ab38865d14231d0b65d3143f5762cc7977d" dependencies = [ - "gdbstub", + "gdbstub 0.7.0", "num-traits", ] @@ -1119,7 +1133,7 @@ dependencies = [ "criterion", "either", "env_logger", - "gdbstub", + "gdbstub 0.6.6", "gdbstub_arch", "hermit-entry", "kvm-bindings", diff --git a/Cargo.toml b/Cargo.toml index 97ab48d8..5f49f94f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ core_affinity = "0.8" either = "1.9" env_logger = "0.10" gdbstub = "0.6" -gdbstub_arch = "0.2" +gdbstub_arch = "0.3" hermit-entry = { version = "0.9", features = ["loader"] } lazy_static = "1.4" libc = "0.2"