Skip to content

Commit

Permalink
cargo: build with crt-static on windows
Browse files Browse the repository at this point in the history
Avoids a runtime dependency on vcruntime140.dll

Signed-off-by: Austin Seipp <[email protected]>
  • Loading branch information
thoughtpolice committed Jul 15, 2024
1 parent df02108 commit e136cda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[target.x86_64-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

* `jj diff --git` no longer shows the contents of binary files.

* Windows binaries no longer depend on `vcruntime140.dll` to be installed
(normally through Visual Studio.)

## [0.19.0] - 2024-07-03

### Breaking changes
Expand Down

0 comments on commit e136cda

Please sign in to comment.