build(deps): update rust crate toml to v1 (#7271)

* build(deps): update rust crate toml to v1

* regenerate config-schema

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: David Knaack <davidkna@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2026-02-11 19:58:13 +01:00
committed by GitHub
parent 267de27d6f
commit 3c139aa060
3 changed files with 40 additions and 44 deletions
+22 -35
View File
@@ -1777,24 +1777,20 @@
}
},
"vcs": {
"$ref": "#/$defs/VcsConfig",
"default": {
"disabled": false,
"fossil_modules": "$fossil_branch$fossil_metrics",
"git_modules": "$git_branch$git_commit$git_state$git_metrics$git_status",
"hg_modules": "$hg_branch$hg_state",
"order": [
"git",
"hg",
"pijul",
"fossil"
],
"disabled": false,
"fossil_modules": "$fossil_branch$fossil_metrics",
"git_modules": "$git_branch$git_commit$git_state$git_metrics$git_status",
"hg_modules": "$hg_branch$hg_state",
"pijul_modules": "$pijul_channel"
},
"allOf": [
{
"$ref": "#/definitions/VcsConfig"
}
]
}
},
"vcsh": {
"$ref": "#/$defs/VcshConfig",
@@ -6696,55 +6692,46 @@
"type": "object",
"properties": {
"order": {
"description": "Order in which to discover VCSes. The first one found is the one used.",
"description": "Order in which to discover VCSes.\nThe first one found is the one used.",
"type": "array",
"items": {
"type": "string"
},
"default": [
"git",
"hg",
"pijul",
"fossil"
],
"type": "array",
"items": {
"$ref": "#/definitions/Vcs"
}
]
},
"disabled": {
"description": "Disables the VCS module.",
"default": false,
"type": "boolean"
"type": "boolean",
"default": false
},
"fossil_modules": {
"description": "Modules to use when Fossil is matched.\n\nThey are configured separately at the top level.",
"default": "$fossil_branch$fossil_metrics",
"type": "string"
"type": "string",
"default": "$fossil_branch$fossil_metrics"
},
"git_modules": {
"description": "Modules to use when Git is matched.\n\nThey are configured separately at the top level.",
"default": "$git_branch$git_commit$git_state$git_metrics$git_status",
"type": "string"
"type": "string",
"default": "$git_branch$git_commit$git_state$git_metrics$git_status"
},
"hg_modules": {
"description": "Modules to use when Mercurial is matched.\n\nThey are configured separately at the top level.",
"default": "$hg_branch$hg_state",
"type": "string"
"type": "string",
"default": "$hg_branch$hg_state"
},
"pijul_modules": {
"description": "Modules to use when Pijul is matched.\n\nThey are configured separately at the top level.",
"default": "$pijul_channel",
"type": "string"
"type": "string",
"default": "$pijul_channel"
}
},
"additionalProperties": false
},
"Vcs": {
"type": "string",
"enum": [
"fossil",
"git",
"hg",
"pijul"
]
},
"VcshConfig": {
"type": "object",
"properties": {