Align indentation of long arguments (#13394)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [clap](https://redirect.github.com/clap-rs/clap) |
workspace.dependencies | patch | `4.5.35` -> `4.5.38` |

---

### Release Notes

<details>
<summary>clap-rs/clap (clap)</summary>

###
[`v4.5.38`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4538---2025-05-11)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.37...v4.5.38)

##### Fixes

-   *(help)* When showing aliases, include leading `--` or `-`

###
[`v4.5.37`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4537---2025-04-18)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.36...v4.5.37)

##### Features

-   Added `ArgMatches::try_clear_id()`

###
[`v4.5.36`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4536---2025-04-11)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.35...v4.5.36)

##### Fixes

- *(help)* Revert 4.5.35's "Don't leave space for shorts if there are
none" for now

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/astral-sh/uv).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC43LjEiLCJ1cGRhdGVkSW5WZXIiOiI0MC43LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImludGVybmFsIl19-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: konstin <konstin@mailbox.org>
This commit is contained in:
renovate[bot] 2025-05-12 11:36:48 +02:00 committed by GitHub
parent bd8bffe39a
commit aed9269c8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 31 deletions

8
Cargo.lock generated
View File

@ -594,9 +594,9 @@ dependencies = [
[[package]] [[package]]
name = "clap" name = "clap"
version = "4.5.35" version = "4.5.38"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8aa86934b44c19c50f87cc2790e19f54f7a67aedb64101c2e1a2e5ecfb73944" checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
dependencies = [ dependencies = [
"clap_builder", "clap_builder",
"clap_derive", "clap_derive",
@ -604,9 +604,9 @@ dependencies = [
[[package]] [[package]]
name = "clap_builder" name = "clap_builder"
version = "4.5.35" version = "4.5.38"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2414dbb2dd0695280da6ea9261e327479e9d37b0630f6b53ba2a11c60c679fd9" checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
dependencies = [ dependencies = [
"anstream", "anstream",
"anstyle", "anstyle",

View File

@ -42,9 +42,10 @@ fn help() {
--cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=] --cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=] --managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=]
--no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=] --no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] --no-python-downloads Disable automatic downloads of Python. [env:
"UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
-q, --quiet... -q, --quiet...
@ -120,9 +121,10 @@ fn help_flag() {
--cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=] --cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=] --managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=]
--no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=] --no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] --no-python-downloads Disable automatic downloads of Python. [env:
"UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
-q, --quiet... -q, --quiet...
@ -197,9 +199,10 @@ fn help_short_flag() {
--cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=] --cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=] --managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=]
--no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=] --no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] --no-python-downloads Disable automatic downloads of Python. [env:
"UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
-q, --quiet... -q, --quiet...
@ -312,7 +315,7 @@ fn help_subcommand() {
[env: UV_CACHE_DIR=] [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python --managed-python
Require use of uv-managed Python versions. Require use of uv-managed Python versions.
By default, uv prefers using Python versions it manages. However, it will use system By default, uv prefers using Python versions it manages. However, it will use system
@ -321,14 +324,14 @@ fn help_subcommand() {
[env: UV_MANAGED_PYTHON=] [env: UV_MANAGED_PYTHON=]
--no-managed-python --no-managed-python
Disable use of uv-managed Python versions. Disable use of uv-managed Python versions.
Instead, uv will search for a suitable Python version on the system. Instead, uv will search for a suitable Python version on the system.
[env: UV_NO_MANAGED_PYTHON=] [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads --no-python-downloads
Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
@ -569,7 +572,7 @@ fn help_subsubcommand() {
[env: UV_CACHE_DIR=] [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python --managed-python
Require use of uv-managed Python versions. Require use of uv-managed Python versions.
By default, uv prefers using Python versions it manages. However, it will use system By default, uv prefers using Python versions it manages. However, it will use system
@ -578,14 +581,14 @@ fn help_subsubcommand() {
[env: UV_MANAGED_PYTHON=] [env: UV_MANAGED_PYTHON=]
--no-managed-python --no-managed-python
Disable use of uv-managed Python versions. Disable use of uv-managed Python versions.
Instead, uv will search for a suitable Python version on the system. Instead, uv will search for a suitable Python version on the system.
[env: UV_NO_MANAGED_PYTHON=] [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads --no-python-downloads
Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
@ -726,9 +729,10 @@ fn help_flag_subcommand() {
--cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=] --cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=] --managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=]
--no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=] --no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] --no-python-downloads Disable automatic downloads of Python. [env:
"UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
-q, --quiet... -q, --quiet...
@ -802,9 +806,10 @@ fn help_flag_subsubcommand() {
--cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=] --cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=] --managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=]
--no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=] --no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] --no-python-downloads Disable automatic downloads of Python. [env:
"UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
-q, --quiet... -q, --quiet...
@ -955,9 +960,10 @@ fn help_with_global_option() {
--cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=] --cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=] --managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=]
--no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=] --no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] --no-python-downloads Disable automatic downloads of Python. [env:
"UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
-q, --quiet... -q, --quiet...
@ -1075,9 +1081,10 @@ fn help_with_no_pager() {
--cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=] --cache-dir [CACHE_DIR] Path to the cache directory [env: UV_CACHE_DIR=]
Python options: Python options:
--managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=] --managed-python Require use of uv-managed Python versions [env: UV_MANAGED_PYTHON=]
--no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=] --no-managed-python Disable use of uv-managed Python versions [env: UV_NO_MANAGED_PYTHON=]
--no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"] --no-python-downloads Disable automatic downloads of Python. [env:
"UV_PYTHON_DOWNLOADS=never"]
Global options: Global options:
-q, --quiet... -q, --quiet...