With Cargo, I can set a project's development settings to use parallel code generation:
[profile.dev]
codegen-units = 8
According to the documentation, it should be possible to put this into ~/.cargo/config
to apply this setting to all projects. This doesn't work for me: it seems that the .cargo/config
file isn't used at all. Is there any way to apply such configuration to every project I compile?