1
1
mirror of https://github.com/wez/wezterm.git synced 2024-07-14 17:40:26 +03:00
wezterm/.cargo/config.toml
Wez Furlong 76cf2e51e6
rename .cargo/config -> .cargo/config.toml
The old path is deprecated and current versions of rust warn
about this.
2024-05-04 15:34:47 -07:00

10 lines
366 B
TOML

[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
ar = "x86_64-w64-mingw32-gcc-ar"
# We need openssl to be statically linked on windows to avoid madness,
# and openssl-src does that based on the crt-static feature being
# enabled for the target, so let's turn that on here.
[target.x86_64-pc-windows-msvc]
rustflags = "-C target-feature=+crt-static"