docs.rs failed to build inspect-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: inspect-0.1.2

Inspect Build Status

A lightweight library providing a very useful inspect! macro that logs meta information like the filename and line number in addition to the expressions you debug and their results.

Example

#![feature(phase)]

extern crate debug;
#[phase(plugin, link)]
extern crate inspect;

fn main() {
    let a = 7u;
    let b = 4u;
    inspect!(a, b, a + b);
    // => file.rs - 10: a = 7, b = 4, a + b = 11
}

Install

Add:

[dependencies.inspect]

git = "https://github.com/reem/rust-inspect"

to your Cargo.toml.

License

MIT