This commit is contained in:
2025-12-12 23:02:40 +02:00
parent efbefca6b5
commit be1834b690
7 changed files with 53 additions and 19 deletions
+11 -1
View File
@@ -1,20 +1,30 @@
[alias]
cl = "clippy -- --no-deps -Wclippy::correctness -Wclippy::complexity -Wclippy::suspicious -Wclippy::style -Wclippy::perf -Wclippy::pedantic -Wclippy::nursery -Aclippy::cargo -Aclippy::restriction -Aclippy::must_use_candidate"
[build]
rustc-wrapper = "sccache"
rustflags = ["-Z", "threads=8"]
[profile.release]
lto = true
[profile.dev]
opt-level = 1
debug = "line-tables-only"
codegen-backend = "cranelift"
[unstable]
codegen-backend = true
[profile.dev.package."*"]
debug = false
opt-level = 3
[profile.debugging]
inherits = "dev"
debug = true
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=--ld-path=wild"]