diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-04-22 02:51:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-22 02:51:36 +0000 |
commit | 30eb1ccf6953e5bf8a347e3a86366e49808ebd9f (patch) | |
tree | 72c99639fd80e2ff50cef54c87a81b5563f5ac9d | |
parent | Merge pull request #1109 from svenstaro/dependabot/cargo/regex-1.8.0 (diff) | |
parent | Set +crt-static on x86_64-pc-windows-msvc (diff) | |
download | miniserve-30eb1ccf6953e5bf8a347e3a86366e49808ebd9f.tar.gz miniserve-30eb1ccf6953e5bf8a347e3a86366e49808ebd9f.zip |
Merge pull request #1107 from svenstaro/crt-static
Set +crt-static on x86_64-pc-windows-msvc
-rw-r--r-- | .cargo/config.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..ac2b23f --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[target.x86_64-pc-windows-msvc] +rustflags = ["-C", "target-feature=+crt-static"] |