Select the types of activity you want to include in your feed.
github: use faster linkers in CI
This shaves off something like 20 to 40 seconds for Linux. It’s seemingly within the margin of error for Windows, so not sure if we’ll want to keep it there.
···22debug = "none"
33incremental = false
4455+[target.x86_64-unknown-linux-gnu]
66+rustflags = ["-Clink-arg=-fuse-ld=mold"]
77+88+[target.aarch64-unknown-linux-gnu]
99+rustflags = ["-Clink-arg=-fuse-ld=mold"]
1010+1111+[target.x86_64-pc-windows-msvc]
1212+linker = "rust-lld.exe"
513# NOTE: on Windows, build with the static CRT, so that produced .exe files don't
614# depend on vcruntime140.dll; otherwise the user requires visual studio if they
715# download a raw .exe
88-[target.x86_64-pc-windows-msvc]
916rustflags = ["-Ctarget-feature=+crt-static"]