it's rediculous how much faster rust is with release flags
@catoutofbed quite a few times i thought i was making clever optimizations but running it with --release shown it wasn't that clever but the compiler is
@hirojin @CobaltVelvet @catoutofbed the release profile doesn’t disable debugging, it just cranks up optimizations (which are slow to compile and may make debugging more difficult)
@CobaltVelvet @catoutofbed how much of the debug information is retained in --release?
or is rust another one of those programming environments that doesn't need debugging in production?