#ray #debugging #adapter #tool #spatie

ray-debug

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

3 releases

0.0.4 Mar 14, 2023
0.0.3 Mar 9, 2023
0.0.1 Mar 8, 2023

#1771 in Development tools

Download history 1/week @ 2024-02-15 41/week @ 2024-02-22 121/week @ 2024-02-29

162 downloads per month

MIT license

31KB
865 lines

ray-debug

Rust

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

This is a work in progress, so bugs and breaking changes are likely to occur! Also, not all Ray features are yet implemented!

Setup

By default, Ray is listening on http://localhost:23517. If you need to use another host or port, you can specify env variables for this:

RAY_HOST=http://localhost
RAY_PORT=23517

Usage

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

use ray_debug::ray;

// ...
fn do_stuff() {
    // ...
    ray(&some_struct);
    
    // To set color:
    ray(&some_struct).unwrap().orange();
}

Your struct needs to implement the trait serde::Serialize for this to work. You can also call ray() with strings, integers etc.

Dependencies

~7–22MB
~339K SLoC