#rust Quick Tip for people that develop in rust and hate the long compile times while developing:
1. install the mold linker [1]
2. add this to your ~/.cargo/config.toml (adapt for your platform)
```
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"]
```
3. Praise the mold developers