breakpoint 0.1.0

Set breakpoints with the `breakpoint!()` macro.
Documentation

breakpoint!()

Build Status

crates.io

Usage

Add to Cargo.toml:

[dependencies]
breakpoint = "0.1.0"

Import the macro into your crate:

#![feature(asm)]
#[macro_use] extern crate breakpoint;

Set breakpoints!

breakpoint!();

Set breakpoints with conditions!

breakpoint!(ref_count == 1);

Documentation

Read the docs!