Rust binaries compiled for Windows by default depend on the Microsoft Visual C++ Redistributable. We can remove this dependency by statically linking the libraries when building.
Let's investigate whether linking these libraries significantly increases binary size. If not, let's link them. Doing so would prevent issues like #2193 from occurring.
Rust binaries compiled for Windows by default depend on the Microsoft Visual C++ Redistributable. We can remove this dependency by statically linking the libraries when building.
Let's investigate whether linking these libraries significantly increases binary size. If not, let's link them. Doing so would prevent issues like #2193 from occurring.