diff --git a/.cargo/config b/.cargo/config index d0deec3..8aa0b22 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,3 +1,6 @@ [target.x86_64-pc-windows-gnu] linker = "/usr/bin/x86_64-w64-mingw32-gcc" -ar = "/usr/x86_64-w64-mingw32/bin/ar" \ No newline at end of file +ar = "/usr/x86_64-w64-mingw32/bin/ar" + +[target.x86_64-pc-windows-msvc] +rustflags = ["-C", "target-feature=+crt-static"] \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 6060fff..4a9f9b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -148,7 +148,7 @@ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" [[package]] name = "boilr" -version = "1.3.14" +version = "1.3.15" dependencies = [ "base64", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 555d7ae..7ea661a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "boilr" -version = "1.3.14" +version = "1.3.15" [dependencies] base64 = "^0.13.0" @@ -59,3 +59,5 @@ winres = "^0.1" [target."cfg(windows)".dependencies] winreg = "^0.10.1" +[profile.release] +incremental = true \ No newline at end of file