Registry / other / gdbstub

gdbstub

JSON →
library0.7.10rscratesunverified

Implementation of the GDB Remote Serial Protocol in Rust for building debug stubs.

# Cargo.toml [dependencies] gdbstub = "0.7.10"
INSTALL
IMPORT
SIG · GDBSTUB
G
gdbstub
otherrustv0.7.10
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GdbStub
use gdbstub::GdbStub;

Run a GDB stub server with a given connection.

use gdbstub::GdbStub; use gdbstub::conn::Connection; fn main() { // Assume a connection (e.g., TcpConnection) let mut gdb = GdbStub::new(connection); gdb.run().unwrap(); }
Debug
Known issues
gotchaRequires implementing the `Target` trait for your architecture.
fix
Implement `gdbstub::target::Target` for your target type.
affects: >=0.7.0
Upgrade
Version history
0.7.10latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
gdbstub — cargo add gdbstub · libregistry