(no title)
StreamBright | 3 years ago
With Cargo I can build code that just runs. With Python it is always a gamble. Different arch? You need to install different packages to compile the C/C++/Fortran code if the library author did not care about WHL. Starting up an application always a gamble, do we have all the deps? Did we miss some?
And so on. With Rust + Cargo I have confidence that the executable runs. Yes, the compilation is an extra step, but I would have that trade every single time for extra safety and reliability.
ghostwriter|3 years ago
It sounds like you'd be better off with higher-level Haskell for these tasks.
StreamBright|3 years ago