breakmancer 0.9.0

Drop a breakpoint into any shell.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Exposes breakmancer as a library for the purpose of integration
//! testing.
//!
//! This API is UNSTABLE and not intended for usage outside of this repository.

pub mod breakpoint;
pub mod cli;
pub mod controller;
mod debug_utils;
pub mod protocol;
pub mod sigint;
mod test_utils;
pub mod transport;
pub mod util;