Skip to content

Commit db2688d

Browse files
committed
release 0.7.7
1 parent 432aa03 commit db2688d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file.
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
# 0.7.7
6+
7+
#### Bugfixes
8+
9+
- Add missing `alloc::borrow::ToOwned` import when building `no_std` with `alloc`. [\#174](https://github.com/daniel5151/gdbstub/pull/174) ([AdamKMeller](https://github.com/AdamKMeller))
510
# 0.7.6
611

712
#### New Protocol Extensions

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gdbstub"
33
description = "An implementation of the GDB Remote Serial Protocol in Rust"
44
authors = ["Daniel Prilik <[email protected]>"]
5-
version = "0.7.6"
5+
version = "0.7.7"
66
license = "MIT OR Apache-2.0"
77
edition = "2018"
88
readme = "README.md"

src/target/ext/tracepoints.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
use crate::target::Arch;
1919
use crate::target::Target;
2020
use crate::target::TargetResult;
21-
use managed::ManagedSlice;
22-
2321
#[cfg(feature = "alloc")]
24-
use crate::alloc::borrow::ToOwned;
22+
use alloc::borrow::ToOwned;
23+
use managed::ManagedSlice;
2524

2625
/// A tracepoint, identified by a unique number.
2726
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]

0 commit comments

Comments
 (0)