fix(deps): update all dependencies #10

Open
kjuulh wants to merge 1 commits from renovate/all into main
Owner

This PR contains the following updates:

Package Type Update Change
clap workspace.dependencies patch 4.5.37 -> 4.5.40
minijinja dependencies minor 2.9.0 -> 2.11.0
tokio (source) workspace.dependencies minor 1.44.2 -> 1.45.1
uuid workspace.dependencies minor 1.16.0 -> 1.17.0

Release Notes

clap-rs/clap (clap)

v4.5.40

Compare Source

Features
  • Support quoted ids in arg!() macro (e.g. arg!("check-config": ...))

v4.5.39

Compare Source

Fixes
  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

v4.5.38

Compare Source

Fixes
  • (help) When showing aliases, include leading -- or -
mitsuhiko/minijinja (minijinja)

v2.11.0

Compare Source

  • Fixed incorrect joining of leading undefineds or empty
    strings in the |join filter. This was inconsistent with
    Jinja2 and the filter itself for undefineds in other
    positions. #​794
  • Allow negative arguments to range function and change
    range to isize. #​799
  • Allow isize as argument type. #​799
  • MiniJinja now correctly handles \x escape sequences in strings
    as well as octals. #​805
  • Added a new |chain filter. #​807

v2.10.2

Compare Source

  • Fixed an issue with the function bounds that caused the
    next-generation trait resolver to fail. #​787

v2.10.1

Compare Source

  • Re-release of 2.10.0 because of a broken release process.

v2.10.0

Compare Source

  • Fix incorrect permissions when --output is used in the CLI. #​772
  • Added mj_err_get_debug_info to the C-ABI. #​775
  • Modules now capture their output like they do in Jinja2. This
    means that if you do {% import 'template.j2' as x %} and you
    then render {{ x }} the output of template.j2 is rendered as
    if it was included. #​778
  • Improved compatibility with Jinja2 for slicing. Negative steps
    are now correctly handled. Additionally slicing on bytes now
    correctly handles steps other than 1. #​781
tokio-rs/tokio (tokio)

v1.45.1: Tokio v1.45.1

Compare Source

1.45.1 (May 24th, 2025)

This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to Instant::now() started failing. This is due to the stabilization of the first time-based metric.

Fixed
  • Disable time-based metrics on wasm32-unknown-unknown (#​7322)

v1.45.0: Tokio v1.45.0

Compare Source

Added
  • metrics: stabilize worker_total_busy_duration, worker_park_count, and worker_unpark_count (#​6899, #​7276)
  • process: add Command::spawn_with (#​7249)
Changed
  • io: do not require Unpin for some trait impls (#​7204)
  • rt: mark runtime::Handle as unwind safe (#​7230)
  • time: revert internal sharding implementation (#​7226)
Unstable
  • rt: remove alt multi-threaded runtime (#​7275)
uuid-rs/uuid (uuid)

v1.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.37` -> `4.5.40` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.9.0` -> `2.11.0` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.44.2` -> `1.45.1` | | [uuid](https://github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.16.0` -> `1.17.0` | --- ### Release Notes <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.40`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4540---2025-06-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.39...v4.5.40) ##### Features - Support quoted ids in `arg!()` macro (e.g. `arg!("check-config": ...)`) ### [`v4.5.39`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4539---2025-05-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.38...v4.5.39) ##### Fixes - *(help)* Show short flag aliases before long - *(help)* Merge the short and long flag alias lists ### [`v4.5.38`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4538---2025-05-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.37...v4.5.38) ##### Fixes - *(help)* When showing aliases, include leading `--` or `-` </details> <details> <summary>mitsuhiko/minijinja (minijinja)</summary> ### [`v2.11.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2110) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.2...2.11.0) - Fixed incorrect joining of leading undefineds or empty strings in the `|join` filter. This was inconsistent with Jinja2 and the filter itself for undefineds in other positions. [#&#8203;794](https://github.com/mitsuhiko/minijinja/issues/794) - Allow negative arguments to `range` function and change range to `isize`. [#&#8203;799](https://github.com/mitsuhiko/minijinja/issues/799) - Allow `isize` as argument type. [#&#8203;799](https://github.com/mitsuhiko/minijinja/issues/799) - MiniJinja now correctly handles `\x` escape sequences in strings as well as octals. [#&#8203;805](https://github.com/mitsuhiko/minijinja/issues/805) - Added a new `|chain` filter. [#&#8203;807](https://github.com/mitsuhiko/minijinja/issues/807) ### [`v2.10.2`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2102) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.1...2.10.2) - Fixed an issue with the function bounds that caused the next-generation trait resolver to fail. [#&#8203;787](https://github.com/mitsuhiko/minijinja/issues/787) ### [`v2.10.1`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2101) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.0...2.10.1) - Re-release of 2.10.0 because of a broken release process. ### [`v2.10.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2100) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.9.0...2.10.0) - Fix incorrect permissions when `--output` is used in the CLI. [#&#8203;772](https://github.com/mitsuhiko/minijinja/issues/772) - Added `mj_err_get_debug_info` to the C-ABI. [#&#8203;775](https://github.com/mitsuhiko/minijinja/issues/775) - Modules now capture their output like they do in Jinja2. This means that if you do `{% import 'template.j2' as x %}` and you then render `{{ x }}` the output of `template.j2` is rendered as if it was included. [#&#8203;778](https://github.com/mitsuhiko/minijinja/issues/778) - Improved compatibility with Jinja2 for slicing. Negative steps are now correctly handled. Additionally slicing on bytes now correctly handles steps other than 1. [#&#8203;781](https://github.com/mitsuhiko/minijinja/issues/781) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.45.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.45.1): Tokio v1.45.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.45.0...tokio-1.45.1) ### 1.45.1 (May 24th, 2025) This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to `Instant::now()` started failing. This is due to the stabilization of the first time-based metric. ##### Fixed - Disable time-based metrics on wasm32-unknown-unknown ([#&#8203;7322]) [#&#8203;7322]: https://github.com/tokio-rs/tokio/pull/7322 ### [`v1.45.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.45.0): Tokio v1.45.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.2...tokio-1.45.0) ##### Added - metrics: stabilize `worker_total_busy_duration`, `worker_park_count`, and `worker_unpark_count` ([#&#8203;6899], [#&#8203;7276]) - process: add `Command::spawn_with` ([#&#8203;7249]) ##### Changed - io: do not require `Unpin` for some trait impls ([#&#8203;7204]) - rt: mark `runtime::Handle` as unwind safe ([#&#8203;7230]) - time: revert internal sharding implementation ([#&#8203;7226]) ##### Unstable - rt: remove alt multi-threaded runtime ([#&#8203;7275]) [#&#8203;6899]: https://github.com/tokio-rs/tokio/pull/6899 [#&#8203;7276]: https://github.com/tokio-rs/tokio/pull/7276 [#&#8203;7249]: https://github.com/tokio-rs/tokio/pull/7249 [#&#8203;7204]: https://github.com/tokio-rs/tokio/pull/7204 [#&#8203;7230]: https://github.com/tokio-rs/tokio/pull/7230 [#&#8203;7226]: https://github.com/tokio-rs/tokio/pull/7226 [#&#8203;7275]: https://github.com/tokio-rs/tokio/pull/7275 </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.17.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.17.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0) #### What's Changed - Added convenience implementation TryFrom<String> for std by [@&#8203;Nahuel-M](https://github.com/Nahuel-M) in https://github.com/uuid-rs/uuid/pull/819 - Update OSX builds to arm by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/825 - Replace derive(Hash) with manual impl in Uuid by [@&#8203;diopoex](https://github.com/diopoex) in https://github.com/uuid-rs/uuid/pull/824 - Add `wasm32v1-none` Support by [@&#8203;bushrat011899](https://github.com/bushrat011899) in https://github.com/uuid-rs/uuid/pull/828 - Prepare for 1.17.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/829 #### New Contributors - [@&#8203;Nahuel-M](https://github.com/Nahuel-M) made their first contribution in https://github.com/uuid-rs/uuid/pull/819 - [@&#8203;diopoex](https://github.com/diopoex) made their first contribution in https://github.com/uuid-rs/uuid/pull/824 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-05-06 02:24:33 +02:00
kjuulh changed title from fix(deps): update rust crate minijinja to v2.10.1 to fix(deps): update all dependencies 2025-05-07 02:26:51 +02:00
kjuulh force-pushed renovate/all from a9f5ed97e2 to 9c8452f6c1 2025-05-07 02:26:52 +02:00 Compare
kjuulh force-pushed renovate/all from 9c8452f6c1 to 8eb6c83291 2025-05-11 05:25:22 +02:00 Compare
kjuulh force-pushed renovate/all from 8eb6c83291 to 22ec9f9686 2025-05-12 02:26:19 +02:00 Compare
kjuulh force-pushed renovate/all from 22ec9f9686 to 94603f9a94 2025-05-12 05:23:59 +02:00 Compare
kjuulh force-pushed renovate/all from 94603f9a94 to 3e3ce5ced0 2025-05-13 02:25:44 +02:00 Compare
kjuulh force-pushed renovate/all from 3e3ce5ced0 to 68184aa16d 2025-05-13 05:24:11 +02:00 Compare
kjuulh force-pushed renovate/all from 68184aa16d to efc513535c 2025-05-14 02:24:21 +02:00 Compare
kjuulh force-pushed renovate/all from efc513535c to d27f636922 2025-05-14 05:24:56 +02:00 Compare
kjuulh force-pushed renovate/all from d27f636922 to 340e2fa8d6 2025-05-15 02:24:09 +02:00 Compare
kjuulh force-pushed renovate/all from 340e2fa8d6 to da7b51b24a 2025-05-15 05:23:18 +02:00 Compare
kjuulh force-pushed renovate/all from da7b51b24a to 5dab8e0f6d 2025-05-17 02:24:03 +02:00 Compare
kjuulh force-pushed renovate/all from 5dab8e0f6d to c6e3343228 2025-05-17 05:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from c6e3343228 to 6819e707f3 2025-05-18 02:24:06 +02:00 Compare
kjuulh force-pushed renovate/all from 6819e707f3 to e0e64d9930 2025-05-18 05:23:55 +02:00 Compare
kjuulh force-pushed renovate/all from e0e64d9930 to a0dd9103ac 2025-05-19 02:24:25 +02:00 Compare
kjuulh force-pushed renovate/all from a0dd9103ac to 122a848b7b 2025-05-19 05:25:36 +02:00 Compare
kjuulh force-pushed renovate/all from 122a848b7b to 00439b059d 2025-05-20 02:23:59 +02:00 Compare
kjuulh force-pushed renovate/all from 00439b059d to 87dbfbd3c4 2025-05-20 05:23:54 +02:00 Compare
kjuulh force-pushed renovate/all from 87dbfbd3c4 to 4d27d16a62 2025-05-21 02:24:48 +02:00 Compare
kjuulh force-pushed renovate/all from 4d27d16a62 to 69e2b08b5a 2025-05-21 05:22:58 +02:00 Compare
kjuulh force-pushed renovate/all from 69e2b08b5a to 85fd7e4bda 2025-05-22 02:25:38 +02:00 Compare
kjuulh force-pushed renovate/all from 85fd7e4bda to 509139f0fa 2025-05-22 05:23:47 +02:00 Compare
kjuulh force-pushed renovate/all from 509139f0fa to dacadb51ca 2025-05-23 02:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from dacadb51ca to ae92421a25 2025-05-23 05:24:58 +02:00 Compare
kjuulh force-pushed renovate/all from ae92421a25 to f0cc0c44b9 2025-05-24 02:26:18 +02:00 Compare
kjuulh force-pushed renovate/all from f0cc0c44b9 to ae393fa779 2025-05-24 05:24:41 +02:00 Compare
kjuulh force-pushed renovate/all from ae393fa779 to 0adcb6a5ee 2025-05-25 02:25:51 +02:00 Compare
kjuulh force-pushed renovate/all from 0adcb6a5ee to 4303786f52 2025-05-28 02:27:57 +02:00 Compare
kjuulh force-pushed renovate/all from 4303786f52 to 8794b028c8 2025-05-28 05:24:12 +02:00 Compare
kjuulh force-pushed renovate/all from 8794b028c8 to 3ee0451086 2025-05-29 02:25:18 +02:00 Compare
kjuulh force-pushed renovate/all from 3ee0451086 to d353a2e2c2 2025-05-29 05:23:37 +02:00 Compare
kjuulh force-pushed renovate/all from d353a2e2c2 to 19c46649de 2025-05-30 02:26:32 +02:00 Compare
kjuulh force-pushed renovate/all from 19c46649de to 955ca0fd10 2025-05-30 05:24:07 +02:00 Compare
kjuulh force-pushed renovate/all from 955ca0fd10 to 5fffb39044 2025-05-31 02:25:29 +02:00 Compare
kjuulh force-pushed renovate/all from 5fffb39044 to 12c88aea83 2025-05-31 05:24:03 +02:00 Compare
kjuulh force-pushed renovate/all from 12c88aea83 to 55d15d247b 2025-06-01 02:24:58 +02:00 Compare
kjuulh force-pushed renovate/all from 55d15d247b to d2095801f7 2025-06-01 05:24:10 +02:00 Compare
kjuulh force-pushed renovate/all from d2095801f7 to 412c475ebb 2025-06-02 02:25:07 +02:00 Compare
kjuulh force-pushed renovate/all from 412c475ebb to a1f7272bb4 2025-06-02 05:24:20 +02:00 Compare
kjuulh force-pushed renovate/all from a1f7272bb4 to 503183407f 2025-06-03 02:25:03 +02:00 Compare
kjuulh force-pushed renovate/all from 503183407f to e4e5681eac 2025-06-03 05:24:18 +02:00 Compare
kjuulh force-pushed renovate/all from e4e5681eac to 6199529667 2025-06-04 02:26:09 +02:00 Compare
kjuulh force-pushed renovate/all from 6199529667 to a23f8b9e50 2025-06-04 05:23:57 +02:00 Compare
kjuulh force-pushed renovate/all from a23f8b9e50 to 67c4d2f4b4 2025-06-05 02:26:41 +02:00 Compare
kjuulh force-pushed renovate/all from 67c4d2f4b4 to 180fa201cd 2025-06-05 05:25:32 +02:00 Compare
kjuulh force-pushed renovate/all from 180fa201cd to a2378c85c5 2025-06-06 02:26:32 +02:00 Compare
kjuulh force-pushed renovate/all from a2378c85c5 to 51726f5a6c 2025-06-06 05:25:48 +02:00 Compare
kjuulh force-pushed renovate/all from 51726f5a6c to 79fe7c8d00 2025-06-07 02:25:56 +02:00 Compare
kjuulh force-pushed renovate/all from 79fe7c8d00 to fa8fb6f00f 2025-06-07 05:24:47 +02:00 Compare
kjuulh force-pushed renovate/all from fa8fb6f00f to 723f1b1047 2025-06-08 02:26:18 +02:00 Compare
kjuulh force-pushed renovate/all from 723f1b1047 to a289abf540 2025-06-08 05:25:32 +02:00 Compare
kjuulh force-pushed renovate/all from a289abf540 to 80905a82a9 2025-06-09 02:27:07 +02:00 Compare
kjuulh force-pushed renovate/all from 80905a82a9 to 5b547371cd 2025-06-09 05:25:24 +02:00 Compare
kjuulh force-pushed renovate/all from 5b547371cd to 4b63cd5b6d 2025-06-10 02:29:16 +02:00 Compare
kjuulh force-pushed renovate/all from 4b63cd5b6d to 796bc3e2e4 2025-06-10 05:26:46 +02:00 Compare
kjuulh force-pushed renovate/all from 796bc3e2e4 to f1d44118f8 2025-06-11 02:26:53 +02:00 Compare
kjuulh force-pushed renovate/all from f1d44118f8 to 51498443b9 2025-06-11 05:26:05 +02:00 Compare
kjuulh force-pushed renovate/all from 51498443b9 to c5330295bf 2025-06-12 02:28:57 +02:00 Compare
kjuulh force-pushed renovate/all from c5330295bf to 6fe5315c50 2025-06-12 05:25:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6fe5315c50 to 6efba66eba 2025-06-13 02:27:13 +02:00 Compare
kjuulh force-pushed renovate/all from 6efba66eba to 76a27e5978 2025-06-13 05:25:50 +02:00 Compare
kjuulh force-pushed renovate/all from 76a27e5978 to 0f0ccb7db6 2025-06-18 02:25:54 +02:00 Compare
kjuulh force-pushed renovate/all from 0f0ccb7db6 to 93155e991c 2025-06-18 05:24:07 +02:00 Compare
kjuulh force-pushed renovate/all from 93155e991c to 3ea8f898a9 2025-06-19 02:25:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3ea8f898a9 to 1627430f2d 2025-06-19 05:24:34 +02:00 Compare
kjuulh force-pushed renovate/all from 1627430f2d to f59507f944 2025-06-20 02:24:53 +02:00 Compare
kjuulh force-pushed renovate/all from f59507f944 to 0ed5eecd00 2025-06-20 05:24:02 +02:00 Compare
kjuulh force-pushed renovate/all from 0ed5eecd00 to 95d8018db4 2025-06-21 02:24:31 +02:00 Compare
kjuulh force-pushed renovate/all from 95d8018db4 to 4ea4725515 2025-06-21 05:23:52 +02:00 Compare
kjuulh force-pushed renovate/all from 4ea4725515 to e28aae17ac 2025-06-22 02:24:34 +02:00 Compare
kjuulh force-pushed renovate/all from e28aae17ac to dfb648b1c9 2025-06-22 05:24:00 +02:00 Compare
kjuulh force-pushed renovate/all from dfb648b1c9 to 7cf26e165f 2025-06-23 02:24:48 +02:00 Compare
kjuulh force-pushed renovate/all from 7cf26e165f to 06622fb202 2025-06-23 05:24:20 +02:00 Compare
kjuulh force-pushed renovate/all from 06622fb202 to 9660a2fac0 2025-06-24 02:25:03 +02:00 Compare
kjuulh force-pushed renovate/all from 9660a2fac0 to 529ba2d14c 2025-06-24 05:24:22 +02:00 Compare
kjuulh force-pushed renovate/all from 529ba2d14c to 51b3c03668 2025-06-25 02:25:50 +02:00 Compare
kjuulh force-pushed renovate/all from 51b3c03668 to 1a5648e713 2025-06-25 05:24:30 +02:00 Compare
kjuulh force-pushed renovate/all from 1a5648e713 to 9da96327d3 2025-06-26 02:25:41 +02:00 Compare
kjuulh force-pushed renovate/all from 9da96327d3 to 3577f076d7 2025-06-26 05:24:14 +02:00 Compare
kjuulh force-pushed renovate/all from 3577f076d7 to 6ac6c09e91 2025-06-27 02:24:50 +02:00 Compare
kjuulh force-pushed renovate/all from 6ac6c09e91 to 7c29502e4b 2025-06-27 05:24:31 +02:00 Compare
kjuulh force-pushed renovate/all from 7c29502e4b to 438fe9c9f1 2025-06-28 02:26:00 +02:00 Compare
kjuulh force-pushed renovate/all from 438fe9c9f1 to 3072703a90 2025-06-28 05:24:33 +02:00 Compare
kjuulh force-pushed renovate/all from 3072703a90 to 579bf280ff 2025-06-29 02:25:17 +02:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all:renovate/all
git checkout renovate/all
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/forest#10
No description provided.