generated: Updated rust-analyzer.nix

This commit is contained in:
github-actions[bot] 2024-08-13 08:05:32 +00:00 committed by Austin Horstman
parent 907c249aba
commit d3cb90aa6e
No known key found for this signature in database

View file

@ -287,20 +287,6 @@
kind = "string"; kind = "string";
}; };
}; };
"rust-analyzer.cargo.sysrootQueryMetadata" = {
description = ''
Whether to run cargo metadata on the sysroot library allowing rust-analyzer to analyze
third-party dependencies of the standard libraries.
This will cause `cargo` to create a lockfile in your sysroot directory. rust-analyzer
will attempt to clean up afterwards, but nevertheless requires the location to be
writable to.
'';
pluginDefault = false;
type = {
kind = "boolean";
};
};
"rust-analyzer.cargo.sysrootSrc" = { "rust-analyzer.cargo.sysrootSrc" = {
description = '' description = ''
Relative path to the sysroot library sources. If left unset, this will default to Relative path to the sysroot library sources. If left unset, this will default to
@ -1534,16 +1520,6 @@
kind = "boolean"; kind = "boolean";
}; };
}; };
"rust-analyzer.lens.forceCustomCommands" = {
description = ''
Internal config: use custom client-side commands even when the
client doesn't set the corresponding capability.
'';
pluginDefault = true;
type = {
kind = "boolean";
};
};
"rust-analyzer.lens.implementations.enable" = { "rust-analyzer.lens.implementations.enable" = {
description = '' description = ''
Whether to show `Implementations` lens. Only applies when Whether to show `Implementations` lens. Only applies when
@ -1671,15 +1647,6 @@
kind = "boolean"; kind = "boolean";
}; };
}; };
"rust-analyzer.notifications.unindexedProject" = {
description = ''
Whether to send an UnindexedProject notification to the client.
'';
pluginDefault = false;
type = {
kind = "boolean";
};
};
"rust-analyzer.numThreads" = { "rust-analyzer.numThreads" = {
description = '' description = ''
How many worker threads in the main loop. The default `null` means to pick automatically. How many worker threads in the main loop. The default `null` means to pick automatically.
@ -2002,13 +1969,12 @@
"rust-analyzer.workspace.discoverConfig": { "rust-analyzer.workspace.discoverConfig": {
"command": [ "command": [
"rust-project", "rust-project",
"develop-json", "develop-json"
{arg}
], ],
"progressLabel": "rust-analyzer", "progressLabel": "rust-analyzer",
"filesToWatch": [ "filesToWatch": [
"BUCK", "BUCK"
], ]
} }
``` ```