ray-debug 0.0.1

Rust adapter for the Spatie Ray debugging tool (https://spatie.be/products/ray)
Documentation

ray-debug

A Rust adapter for Spatie's fantastic debugging tool, Ray.

This is a work in progress, so breaking changes are likely to occur!

Only basic debugging is implemented at the moment, so you can use it like:

use ray_debug::{ray, ray_log};

// ...
fn do_stuff() {
    // ...
    ray(&some_struct);
    ray_log("foo");
}