Faster compilation
Why ?
Compilation speed is one of the issue of Rust, but hopefully there are ways to improve the situation.
A faster linker - Wild
https://github.com/wild-linker/wild
TODO TODO
> readelf --string-dump .comment target/debug/runox
String dump of section '.comment':
[ 1] rustc version 1.99.0-nightly (be8e82435 2026-07-11) with cranelift 0.132.0
[ 4c] rustc version 1.99.0-nightly (be8e82435 2026-07-11)
[ 80] GCC: (GNU) 16.1.1 20260515 (Red Hat 16.1.1-2)
[ ae] Linker: Wild 0.9.0 non-git-build (compatible with GNU linkers)
Faster codegen - cranelift
TODO
pnpm tauri build
...
The package requires the Cargo feature called `codegen-backend`
It fails if it doesn't take the nightly toolchain
cargo +nightly ...
or make it the default
rustup default nightly