fix: build updater with static runtime to prevent flutter engine build linking errors (#254)

* fix: build updater with static runtime to prevent flutter engine build linking errors

* Update library/.cargo/config.toml

Co-authored-by: Eric Seidel <eric@shorebird.dev>

* cspell

---------

Co-authored-by: Eric Seidel <eric@shorebird.dev>
This commit is contained in:
Bryan Oltman
2024-12-17 16:34:20 -05:00
committed by GitHub
parent c112de1229
commit a6c761f50f
2 changed files with 8 additions and 3 deletions
+3
View File
@@ -0,0 +1,3 @@
# The Flutter engine builds with static crt runtime so we need to too to match.
[target.'cfg(all(windows, target_env = "msvc"))']
rustflags = ["-C", "target-feature=+crt-static"]