Skip to content

Commit

Permalink
cargo fmt, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel5151 committed Apr 29, 2023
1 parent 3c7a87c commit 3bc0163
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,9 +6,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

#### Breaking API Changes

- `Arch` API:
- Entirely removed `single_step_behavior`. See [\#132](https://github.com/daniel5151/gdbstub/pull/132) for details and rationale
- `Target` APIs:
- `SingleThreadBase`/`MultiThreadBase`
- `read_addrs` now returns a `usize` instead of a `()`, allowing implementations to report cases where only a subset of memory could be read.
- `GdbStubError`:
- Removed `NoActiveThread` variant

# 0.6.6

Expand Down
2 changes: 1 addition & 1 deletion gdbstub_arch/src/arm/mod.rs
@@ -1,6 +1,6 @@
//! Implementations for various ARM architectures.

use gdbstub::arch::{Arch};
use gdbstub::arch::Arch;

pub mod reg;

Expand Down
2 changes: 1 addition & 1 deletion gdbstub_arch/src/mips/mod.rs
@@ -1,6 +1,6 @@
//! Implementations for the MIPS architecture.

use gdbstub::arch::{Arch};
use gdbstub::arch::Arch;

pub mod reg;

Expand Down
2 changes: 1 addition & 1 deletion gdbstub_arch/src/msp430/mod.rs
@@ -1,6 +1,6 @@
//! Implementations for the TI-MSP430 family of MCUs.

use gdbstub::arch::{Arch};
use gdbstub::arch::Arch;

pub mod reg;

Expand Down
2 changes: 1 addition & 1 deletion gdbstub_arch/src/riscv/mod.rs
Expand Up @@ -2,7 +2,7 @@
//!
//! *Note*: currently only supports integer versions of the ISA.

use gdbstub::arch::{Arch};
use gdbstub::arch::Arch;

pub mod reg;

Expand Down
2 changes: 1 addition & 1 deletion src/target/mod.rs
Expand Up @@ -251,7 +251,7 @@
//! type is being used. e.g: on a 32-bit target, instead of cluttering up a
//! method implementation with a parameter passed as `(addr: <Self::Arch as
//! Arch>::Usize)`, just write `(addr: u32)` directly.
use crate::arch::{Arch};
use crate::arch::Arch;

pub mod ext;

Expand Down

0 comments on commit 3bc0163

Please sign in to comment.