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:
```rust use raydebug::{ray, raylog};
// ... fn dostuff() { // ... ray(&somestruct); ray_log("foo"); } ```