From 6a1f3636c8336f60a03727e27ec31d1f32a780b2 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 5 Jan 2020 14:01:37 -0800 Subject: [PATCH] Add a custom .cargo/config to improve the link performance a bit Thanks to the folks in ##rust on Freenode for helping tinker around with this :smile_cat: --- .cargo/config | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..09ed36a --- /dev/null +++ b/.cargo/config @@ -0,0 +1,7 @@ + +# Dramatically increases the link performance for the eventbus +[build] +rustflags = ["-C", "link-arg=-fuse-ld=lld"] + + +# vim: ft=cfg