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.39
minijinja dependencies minor 2.9.0 -> 2.10.2
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.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.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.39` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.9.0` -> `2.10.2` | | [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.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.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
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.