martensite-devtools 0.6.0

Tracing spans, Tracy/Chrome GPU timestamps, and in-app F12 developer HUD.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Telemetry and in-app F12 developer HUD.
#![forbid(unsafe_code)]

#[cfg(test)]
mod tests {
    #[test]
    fn crate_compiles() {
        // The crate compiling and this test running is the smoke test.
        // `#![forbid(unsafe_code)]` is enforced at compile time above.
    }
}