fix(patch): statically link C runtime for Windows patch binaries (#129)

* chore: statically link C runtime for Windows patch binaries

* cleanup
This commit is contained in:
Bryan Oltman
2024-02-26 16:50:49 -05:00
committed by GitHub
parent 2c45aa427d
commit b1097563db
+4
View File
@@ -0,0 +1,4 @@
# Prevents missing DLLs when running the binary on Windows
# See https://github.com/shorebirdtech/shorebird/issues/1487
[target.x86_64-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]