Skip to main content

martensite_devtools/
lib.rs

1//! Telemetry and in-app F12 developer HUD.
2#![forbid(unsafe_code)]
3
4#[cfg(test)]
5mod tests {
6    #[test]
7    fn crate_compiles() {
8        // The crate compiling and this test running is the smoke test.
9        // `#![forbid(unsafe_code)]` is enforced at compile time above.
10    }
11}