From 84d59ff9a62aefdee992eef31d7f894c15aa07b6 Mon Sep 17 00:00:00 2001 From: Kevin Nakamura Date: Sat, 5 Jul 2025 07:13:16 +0900 Subject: [PATCH] Statically link MSVC runtime, removing the need to install the redistributable. --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 3fbb3be1b..49aaa3a6c 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -10,3 +10,6 @@ PYTHONDONTWRITEBYTECODE = "1" # prevent junk files on Windows [term] color = "always" + +[target.'cfg(all(target_env = "msvc", target_os = "windows"))'] +rustflags = ["-C", "target-feature=+crt-static"]