bugstalker 0.4.5

BugStalker is a modern and lightweight debugger for rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Generic UI components

/// Render async primitives
pub mod r#async;
/// Handle commands from [`crate::ui::command`]
pub mod command_handler;
/// Render files
pub mod file;
/// Help information
pub mod help;
/// Print rendered information
pub mod print;
/// User defined triggers
pub mod trigger;
/// Render variables and arguments
pub mod variable;