summaryrefslogtreecommitdiff
path: root/.cargo/config.toml
blob: 80a170c245a667888cb2eb12f3aca94e6b9e1461 (plain)
1
2
3
4
5
6
7
8
9
10
[alias]
lint = "clippy --no-deps -- -D warnings"
lint-all = "clippy --no-deps -- -D clippy::pedantic"

[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]

# [build]
# rustflags = ["-Z", "threads=6"]