In Windows, when compiling C++, I can specify /MT
compiler option to use a static version of the runtime library, ie. to not link dinamically to MSVCRT.
How does Rust/Cargo behave in this regard, since there is no such option? Does it link static or dinamically?