You've already forked AstralRinth
forked from didirus/AstralRinth
* Switch to nightly + cranelift * Fail on warnings only in CI * Fix check errors * Don't use mold on Linux to fix CI * Pin nightly toolchain and add default rustup components * Fix another CI thing * PR comment
17 lines
466 B
TOML
17 lines
466 B
TOML
# Enable Cranelift for debug builds, improving iterative compile times
|
|
[unstable]
|
|
codegen-backend = true
|
|
|
|
[profile.dev]
|
|
codegen-backend = "cranelift"
|
|
|
|
[build]
|
|
rustflags = ["--cfg", "tokio_unstable"]
|
|
|
|
# Windows has stack overflows when calling from Tauri, so we increase the default stack size used by the compiler
|
|
[target.'cfg(windows)']
|
|
rustflags = ["--cfg", "tokio_unstable", "-C", "link-args=/STACK:16777220"]
|
|
|
|
[target.x86_64-pc-windows-msvc]
|
|
linker = "rust-lld"
|