summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-08-30 23:10:03 +0200
committerHampusM <hampus@hampusmat.com>2026-08-30 23:10:03 +0200
commit072758a16e92e206aa441333ee431761fa0fd620 (patch)
treea4b160efd39dca7a99c6cd6a6def9fd738f0f1d9
parentaab9155405ebead3eff92ffcfb262c825b29d106 (diff)
chore: add rust-analyzer config file
-rw-r--r--rust-analyzer.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/rust-analyzer.json b/rust-analyzer.json
new file mode 100644
index 0000000..f20ac7a
--- /dev/null
+++ b/rust-analyzer.json
@@ -0,0 +1,18 @@
+{
+ "cargo": {
+ "allTargets": false
+ },
+ "check": {
+ "overrideCommand": [
+ "rustup",
+ "run",
+ "nightly",
+ "cargo",
+ "check",
+ "--workspace",
+ "--message-format=json",
+ "--keep-going",
+ "--config=.cargo/config-nightly-fast-compile.toml"
+ ]
+ }
+}