Co-authored-by: Nicholas Nethercote <n.nethercote@gmail.com>
This commit is contained in:
Jakub Beránek 2025-09-04 17:04:27 +02:00 committed by GitHub
parent 7b6d35f06a
commit 79f56d5437
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,7 @@ Compilation of Rust crates can sometimes be rather slow, due to various reasons
This guide focuses on the first approach.
Below, you can find several methods that can be used to optimize build performance. It is important to nore that their effect varies a lot based on the compiled crate, and in some cases they can actually make compilation slower. You should always measure build performance on your crate(s) to determine if a given method described here is effective for your crate.
Below, you can find several methods that can be used to optimize build performance. It is important to note that their effect varies a lot based on the compiled crate, and in some cases they can actually make compilation slower. You should always measure build performance on your crate(s) to determine if a given method described here is effective for your crate.
Note that some of these approaches currently require using the nightly toolchain.