diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-04-20 21:41:24 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2023-04-20 21:41:24 +0000 |
commit | 01572a2c0a550354d9d79f5c514f67169cb4f17d (patch) | |
tree | 6f4d781ab749c9234c5fd7263f262b942a8a5d1c /.cargo/config.toml | |
parent | Switch from deprecated get_if_addrs to if-addrs (diff) | |
download | miniserve-01572a2c0a550354d9d79f5c514f67169cb4f17d.tar.gz miniserve-01572a2c0a550354d9d79f5c514f67169cb4f17d.zip |
Set +crt-static on x86_64-pc-windows-msvc
Diffstat (limited to '.cargo/config.toml')
-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"] |