breakpoint

Crates.iobreakpoint
lib.rsbreakpoint
version
sourcesrc
created_at2015-08-03 16:59:25.881125
updated_at2015-12-11 23:57:49.028558
descriptionSet breakpoints with the `breakpoint!()` macro.
homepagehttps://github.com/fitzgen/breakpoint-rs
repositoryhttps://github.com/fitzgen/breakpoint-rs.git
max_upload_size
id2750
Cargo.toml error:TOML parse error at line 11, column 1 | 11 | tags = ["breakpoint", "debug", "int3", "debugger"] | ^^^^ unknown field `tags`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Nick Fitzgerald (fitzgen)

documentation

https://fitzgen.github.io/breakpoint-rs/breakpoint/index.html

README

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!

Commit count: 8

cargo fmt