TIL that Rust's dbg! macro also works in release builds, so you can debug issues when you need the perf of a release build. This differs from debug_assert! which is ignored in release builds.