From 397e66e71a38961d910128fc177d1713b4c26eb9 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:35:04 +0200 Subject: [PATCH] chore: decrease build times on windows Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- .cargo/config.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..e27c32e --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,7 @@ +[build] +rustdocflags = ["--document-private-items"] +# rustflags = "-C target-cpu=native -D warnings" +# incremental = true + +[target.x86_64-pc-windows-msvc] +linker = "rust-lld.exe"