chore(deps): update dependency rust-lang/rust-analyzer to v2026-07-06#226
Merged
Conversation
Contributor
Check & update settingsChecking tag range 2026-06-29..2026-07-06 Added keys (1){
"cargo.configPath": {
"markdownDescription": "Path to a `.cargo/config.toml` style file to pass to cargo via `--config`\nfor every cargo invocation (metadata, build scripts, config discovery).\nUseful to give rust-analyzer a consistent view of the project configuration.",
"default": null,
"type": [
"null",
"string"
]
}
}// Path to a `.cargo/config.toml` style file to pass to cargo via `--config`
// for every cargo invocation (metadata, build scripts, config discovery).
// Useful to give rust-analyzer a consistent view of the project configuration.
"cargo.configPath": null,Changed keys (1){
"completion.autoimport.exclude": {
"markdownDescription": "A list of full paths to items to exclude from auto-importing completions.\n\nTraits in this list won't have their methods suggested in completions unless the trait\nis in scope.\n\nYou can either specify a string path which defaults to type \"always\" or use the more\nverbose form `{ \"path\": \"path::to::item\", type: \"always\" }`.\n\nFor traits the type \"methods\" can be used to only exclude the methods but not the trait\nitself.\n\nFor modules the type \"sub_items\" can be used to only exclude the all items in it but not the module\nitself. This does not include items defined in nested modules.\n\nFor enums the type \"variants\" can be used to only exclude the all variants in it but not the enum\nitself.\n\nThis setting also inherits `#rust-analyzer.completion.excludeTraits#`.",
"default": [
{
"path": "core::borrow::Borrow",
"type": "methods"
},
{
"path": "core::borrow::BorrowMut",
"type": "methods"
}
],
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"path": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"always",
"methods",
"sub_items",
"variants"
],
"markdownEnumDescriptions": [
"Do not show this item or its methods (if it is a trait) in auto-import completions.",
"Do not show this trait's methods in auto-import completions.",
"Do not show this module's all items in it in auto-import completions.",
"Do not show this enum's variants in auto-import completions."
]
}
}
}
]
}
}
}// A list of full paths to items to exclude from auto-importing completions.
//
// Traits in this list won't have their methods suggested in completions unless the trait
// is in scope.
//
// You can either specify a string path which defaults to type "always" or use the more
// verbose form `{ "path": "path::to::item", type: "always" }`.
//
// For traits the type "methods" can be used to only exclude the methods but not the trait
// itself.
//
// For modules the type "sub_items" can be used to only exclude the all items in it but not the module
// itself. This does not include items defined in nested modules.
//
// For enums the type "variants" can be used to only exclude the all variants in it but not the enum
// itself.
//
// This setting also inherits `#rust-analyzer.completion.excludeTraits#`.
"completion.autoimport.exclude": [
{
"path": "core::borrow::Borrow",
"type": "methods"
},
{
"path": "core::borrow::BorrowMut",
"type": "methods"
}
],All changes in the configuration file--- 2026-06-29
+++ 2026-07-06
@@ -974,6 +974,19 @@
{
"title": "Cargo",
"properties": {
+ "rust-analyzer.cargo.configPath": {
+ "markdownDescription": "Path to a `.cargo/config.toml` style file to pass to cargo via `--config`\nfor every cargo invocation (metadata, build scripts, config discovery).\nUseful to give rust-analyzer a consistent view of the project configuration.",
+ "default": null,
+ "type": [
+ "null",
+ "string"
+ ]
+ }
+ }
+ },
+ {
+ "title": "Cargo",
+ "properties": {
"rust-analyzer.cargo.extraArgs": {
"markdownDescription": "Extra arguments that are passed to every cargo invocation.",
"default": [],
@@ -1389,7 +1402,8 @@
"enumDescriptions": [
"Do not show this item or its methods (if it is a trait) in auto-import completions.",
"Do not show this trait's methods in auto-import completions.",
- "Do not show this module's all items in it in auto-import completions."
+ "Do not show this module's all items in it in auto-import completions.",
+ "Do not show this enum's variants in auto-import completions."
]
}
} |
rchl
approved these changes
Jul 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2026-06-29→2026-07-06Release Notes
rust-lang/rust-analyzer (rust-lang/rust-analyzer)
v2026-07-06Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.