diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-11-20 04:43:36 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-11-20 06:00:55 +0000 |
commit | 1dcdd0efb1a44c9879a023aa27a8f2c26c2953aa (patch) | |
tree | a58c40077fed14fd9670b0d89a571b62ff79a0c2 /.cargo/config.toml | |
parent | Better help for -u (diff) | |
download | miniserve-1dcdd0efb1a44c9879a023aa27a8f2c26c2953aa.tar.gz miniserve-1dcdd0efb1a44c9879a023aa27a8f2c26c2953aa.zip |
Add i686-pc-windows-msvc target
Fixes #1272.
Diffstat (limited to '.cargo/config.toml')
-rw-r--r-- | .cargo/config.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index ac2b23f..7e766c3 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,5 @@ [target.x86_64-pc-windows-msvc] rustflags = ["-C", "target-feature=+crt-static"] + +[target.i686-pc-windows-msvc] +rustflags = ["-C", "target-feature=+crt-static"] |