From 3b5ef2ebcca99869b34c016b8f9805242bfab88d Mon Sep 17 00:00:00 2001 From: itowlson Date: Wed, 18 Dec 2024 10:16:17 +1300 Subject: [PATCH] On Windows, do not require redist of vcruntime DLL (#133) Signed-off-by: itowlson --- .cargo/config.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..35c67ad --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[target.'cfg(all(windows, target_env = "msvc"))'] +rustflags = ["-C", "target-feature=+crt-static"]