Earlier quoted context omitted.
Why not Rust? I am in a similar situation to the author. Python handles most of what I need, but that last 20% I need more.
The Rust compiler is well known for having rather less-than-stellar performance, and this can definitely impact larger projects. (Much of the problem is not quite related to Rust itself, but rather to the intermediate compilation artifacts that are fed to LLVM for final code generation. It's not exactly an easy issue to address, given that LLVM itself is rather old and clunky code; written in C++ for maximum portabil…
You can do 'cargo check' to do the analysis part without actually compiling a binary, it's super fast and excellent for development.