From c6b18ff4c45e9c080650c61d9b23503b2370e49f Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 8 Nov 2021 09:11:29 -0600 Subject: [PATCH] fix: Use static CRT on window --- .cargo/config | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 000000000..ba321231f --- /dev/null +++ b/.cargo/config @@ -0,0 +1,5 @@ +[target.x86_64-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"] + +[target.i686-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"]