Show HN: BugStalker - a modern Rust debugger

github.com

115 points by godzie 14 days ago


bobajeff - 14 days ago

Does this have a machine interface mode like gdb/lldb? Asking because I like my debuggers to be integrated with my code editor of choice which is usually done via such an interface.

otherayden - 14 days ago

Best of luck with this project. I'm not even a rust dev but I came to say that I love this name

meisel - 14 days ago

I’m surprised this isn’t getting more love. My experience with other debuggers with Rust was quite poor, I hope this one can fare much better. For example, I couldn’t call functions with previous debuggers

bfrog - 14 days ago

Been hoping someone would make this, looks great!

I guess I’m next hoping someone gets it working using jtag/swd debug probes for embedded targets :)

giancarlostoro - 14 days ago

BugStomper would have also been a great name choice. ;)

godzie - 14 days ago

BS is a modern debugger for Linux x86-64. Written in Rust for Rust programs.

Async Rust support – debug async code with new commands: - async backtrace – inspect async task backtraces - async task – view task details - async stepover / async stepout – better control over async execution

Enhanced variable inspection: - argd / vard – print variables and arguments using Debug trait

Other: - new `call` Command – execute functions directly in the debugged program - `trigger` Command – fine-grained control over breakpoints - new project Website – better docs and resources

…and much more!

Full Changelog: https://github.com/godzie44/BugStalker/releases/tag/v0.3.0

Documentation & Demos: https://godzie44.github.io/BugStalker/

gitroom - 14 days ago

Honestly this wouldve helped me a ton when I got stuck with async errors before, Rust debugging always felt tougher than it should be.

lostmsu - 11 days ago

What's the state of expression evaluation?

thurn - 14 days ago

is this necessarily linux for dependency reasons, or could it be on OSX in the future?

sixthDot - 14 days ago

any Machine Interface planned (à la GDB/MI)?