Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the rust-updates group across 1 directory with 37 updates #7971

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 4, 2025

Bumps the rust-updates group with 35 updates in the / directory:

Package From To
bstr 1.11.1 1.11.3
insta 1.42.1 1.42.2
git2 0.20.0 0.20.1
uuid 1.12.1 1.16.0
serde 1.0.217 1.0.219
thiserror 2.0.9 2.0.12
tokio 1.42.0 1.44.1
keyring 3.6.1 3.6.2
anyhow 1.0.95 1.0.97
tempfile 3.16.0 3.19.1
clap 4.5.23 4.5.35
chrono 0.4.39 0.4.40
diffy 0.4.0 0.4.2
zip 2.4.1 2.6.0
sysinfo 0.33.1 0.34.2
gix-path 0.10.13 0.10.15
windows 0.58.0 0.61.1
strum 0.26.3 0.27.1
serde_json 1.0.138 1.0.140
infer 0.16.0 0.19.0
log 0.4.22 0.4.27
gix-utils 0.1.13 0.2.0
tauri-plugin-dialog 2.2.0 2.2.1
tauri-plugin-http 2.2.0 2.4.3
tauri-plugin-log 2.2.0 2.2.2
tauri-plugin-os 2.2.0 2.2.1
tauri-plugin-process 2.2.0 2.2.1
tauri-plugin-single-instance 2.2.2 2.2.3
tauri-plugin-updater 2.3.0 2.7.0
tauri-plugin-window-state 2.2.0 2.2.2
open 5.3.1 5.3.2
tauri-plugin-clipboard-manager 2.2.1 2.2.2
once_cell 1.20.2 1.21.3
tokio-util 0.7.13 0.7.14
rustc-hash 2.1.0 2.1.1

Updates bstr from 1.11.1 to 1.11.3

Commits
  • cbe2c69 1.11.3
  • 1ade797 impl: fix impl_partial_eq_cow to apply .as_bytes() and &** to the corre...
  • b669472 1.11.2
  • 732fc99 impl: fix formatting of control characters \x1a through \x1f in Debug impl
  • 7cd4694 impl: remove unused 'b lifetime from trait implementation macros
  • See full diff in compare view

Updates insta from 1.42.1 to 1.42.2

Release notes

Sourced from insta's releases.

1.42.2

Release Notes

  • Support other indention characters than spaces in inline snapshots. #679
  • Fix an issue where multiple targets with the same root would cause too many pending snapshots to be reported. #730
  • Hide unseen option in CLI, as it's pending deprecation. #732
  • Stop \t and \x1b (ANSI color escape) from causing snapshots to be escaped. #715
  • Improved handling of inline snapshots within allow_duplicates! { .. }. #712

Install cargo-insta 1.42.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.42.2/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.42.2/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.42.2

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from insta's changelog.

1.42.2

  • Support other indention characters than spaces in inline snapshots. #679
  • Fix an issue where multiple targets with the same root would cause too many pending snapshots to be reported. #730
  • Hide unseen option in CLI, as it's pending deprecation. #732
  • Stop \t and \x1b (ANSI color escape) from causing snapshots to be escaped. #715
  • Improved handling of inline snapshots within allow_duplicates! { .. }. #712
Commits
  • e81bae9 Bump versions to 1.42.2 (#733)
  • df78d98 Hide unseen from --help (#732)
  • 7a5e938 Fix duplicate snapshots on multiple targets with identical roots (#730)
  • b72bfba Improve functional test docs (#731)
  • e6469ac Qualify all references in macros to avoid name clashes (#729)
  • b6ecee1 Add changelog for INSTA_WORKSPACE_ROOT at compile time (#727)
  • ef4703f Allow setting INSTA_WORKSPACE_ROOT at compile time (#726)
  • 04a98c3 Fix inline snapshot handling within allow_duplicates! block (#722)
  • 24f32aa Fix crash on scanning indentation of arbitrary lines (#723)
  • 759283e [ISSUE-718] Allow specifying cargo-nextest bin (#721)
  • Additional commits viewable in compare view

Updates git2 from 0.20.0 to 0.20.1

Changelog

Sourced from git2's changelog.

0.20.1 - 2025-03-17

0.20.0...0.20.1

Added

  • Added Repository::branch_upstream_merge() #1131
  • Added Index::conflict_get() #1134
  • Added Index::conflict_remove() #1133
  • Added opts::set_cache_object_limit() #1118
  • Added Repo::merge_file_from_index() and associated MergeFileOptions and MergeFileResult. #1062

Changed

  • The url dependency minimum raised to 2.5.4 #1128
  • Changed the tracing callback to abort the process if the callback panics instead of randomly detecting the panic in some other function. #1121
  • Credential helper config (loaded with CredentialHelper::config) now checks for helpers that start with something that looks like an absolute path, rather than checking for a / or \ anywhere in the helper string (which resolves an issue if the helper had arguments with / or \). #1137

Fixed

  • Fixed panic in Remote::url_bytes if the url is empty. #1120
  • Fixed incorrect lifetimes on Patch::delta, Patch::hunk, and Patch::line_in_hunk. The return values must not outlive the Patch. #1141
  • Bumped requirement to libgit2-sys 0.18.1, which fixes linking of advapi32 on Windows. #1143
Commits
  • 62d353e Merge pull request #1144 from ehuss/bump-version
  • 8980c61 Bump versions of git2 and libgit2-sys
  • 1e1687e Merge pull request #1137 from aibaars/fix-credential-helper
  • 258d3b6 Merge pull request #1062 from MikeJerred/master
  • d1b40aa Drop lifetime for MergeFileResult
  • 197106b Drop Copy/Clone from git_merge_file_result
  • 8381b72 Make MergeFileOptions::raw pub(crate)
  • 3cc3e25 fix: type mismatch error
  • e1e933b fix: mark to_raw as unsafe
  • b76c8be fix: use correct typings for git_merge_file_flag_t
  • Additional commits viewable in compare view

Updates uuid from 1.12.1 to 1.16.0

Release notes

Sourced from uuid's releases.

v1.16.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.15.1...v1.16.0

v1.15.1

What's Changed

Full Changelog: uuid-rs/uuid@v1.15.0...v1.15.1

v1.15.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.14.0...v1.15.0

v1.14.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.13.2...v1.14.0

v1.13.2

What's Changed

Full Changelog: uuid-rs/uuid@1.13.1...v1.13.2

1.13.1

What's Changed

... (truncated)

Commits
  • c36beb1 Merge pull request #817 from uuid-rs/cargo/v1.16.0
  • 5338b24 prepare for 1.16.0 release
  • 420f627 Merge pull request #815 from tguichaoua/new_v8_const
  • 254258c mark Uuid::new_v8 const
  • 4e5b88e Merge pull request #812 from uuid-rs/cargo/v1.15.1
  • 7fb64f7 prepare for 1.15.1 release
  • f05b6df Merge pull request #811 from uuid-rs/fix/v7-overflow
  • c2d313f guarantee v7 timestamp will never overflow
  • 56ba68f Merge pull request #810 from uuid-rs/cargo/v1.15.0
  • 26c8a9b prepare for 1.15.0 release
  • Additional commits viewable in compare view

Updates serde from 1.0.217 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)

v1.0.218

  • Documentation improvements
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • 7bfd518 Release 1.0.218
  • Additional commits viewable in compare view

Updates thiserror from 2.0.9 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)

2.0.11

2.0.10

  • Support errors containing a generic type parameter's associated type in a field (#408)
Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • 0f532e3 Release 2.0.11
  • 3d15543 Merge pull request #410 from dtolnay/testnostd
  • Additional commits viewable in compare view

Updates tokio from 1.42.0 to 1.44.1

Release notes

Sourced from tokio's releases.

Tokio v1.44.1

1.44.1 (March 13th, 2025)

Fixed

  • rt: skip defer queue in block_in_place context (#7216)

#7216: tokio-rs/tokio#7216

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

Added

  • coop: add task::coop module (#7116)
  • process: add Command::get_kill_on_drop() (#7086)
  • sync: add broadcast::Sender::closed (#6685, #7090)
  • sync: add broadcast::WeakSender (#7100)
  • sync: add oneshot::Receiver::is_empty() (#7153)
  • sync: add oneshot::Receiver::is_terminated() (#7152)

Fixed

  • fs: empty reads on File should not start a background read (#7139)
  • process: calling start_kill on exited child should not fail (#7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#7122)
  • sync: properly handle panic during mpsc drop (#7094)

Changes

  • runtime: clean up magic number in registration set (#7112)
  • coop: make coop yield using waker defer strategy (#7185)
  • macros: make select! budget-aware (#7164)
  • net: panic when passing a blocking socket to from_std (#7166)
  • io: clean up buffer casts (#7142)

Changes to unstable APIs

  • rt: add before and after task poll callbacks (#7120)
  • tracing: make the task tracing API unstable public (#6972)

Documented

  • docs: fix nesting of sections in top-level docs (#7159)
  • fs: rename symlink and hardlink parameter names (#7143)
  • io: swap reader/writer in simplex doc test (#7176)
  • macros: docs about select! alternatives (#7110)
  • net: rename the argument for send_to (#7146)

... (truncated)

Commits

Updates keyring from 3.6.1 to 3.6.2

Release notes

Sourced from keyring's releases.

v3.6.2: better docs, lighter-weight tests

Thanks to @​unkcpz, this release fully documents all the platform-specific modules in each platform on docs.rs.

The dev dependencies (used for testing) have been switched from using rand to using the lighter-weight module fastrand.

There are no functional code changes in this release, only test changes.

Changelog

Sourced from keyring's changelog.

Version 3.6.2

  • Have docs.rs build docs for all modules on all platforms (thanks to @​unkcpz - see #235).
  • Switch to fastrand for tests (see #237).
Commits
  • ee3f80d Merge pull request #238 from brotskydotcom/issue-236
  • 766c8bc Switch to using fastrand for testing.
  • f1b7ec1 Merge pull request #237 from unkcpz/fix/235/keyring-doc-xplat
  • 09c9c0d using matrix for targets in doctest.yaml
  • 307e575 Move to doctest.yaml as ind CI and run inline from action
  • 8a5c6dd fast-fail test-docsrs-build.sh
  • a40bd95 r-brot
  • ac2a3b4 experiment doccfg with attr docrs
  • 3d8da96 multi-target toolchain CI
  • a994584 remove -Zbuild-std which not required on docs.rs
  • Additional commits viewable in compare view

Updates anyhow from 1.0.95 to 1.0.97

Release notes

Sourced from anyhow's releases.

1.0.97

  • Documentation improvements

1.0.96

  • Documentation improvements
Commits
  • bfb89ef Release 1.0.97
  • c7fca9b Ignore elidable_lifetime_names pedantic clippy lint
  • 427c0bb Point standard library links to stable
  • f0aa0d3 Release 1.0.96
  • bc33c24 Convert html links to intra-doc links
  • 1cff785 Unset doc-scrape-examples for lib target
  • d71c806 More precise gitignore patterns
  • 3e40975 Remove **/*.rs.bk from project-specific gitignore
  • b880dd0 Ignore Cargo-generated tests/crate/target directory
  • 8891ce3 Merge pull request #404 from dtolnay/missingabi
  • Additional commits viewable in compare view

Updates tempfile from 3.16.0 to 3.19.1

Changelog

Sourced from tempfile's changelog.

3.19.1

  • Don't unlink temporary files immediately on Windows (fixes #339). Unfortunately, this seemed to corrupt the file object (possibly a Windows kernel bug) in rare cases and isn't strictly speaking necessary.

3.19.0

  • Remove direct dependency on cfg-if. It's still in the tree, but we didn't really need to use it in this crate.
  • Add an unstable feature (unstable-windows-keep-open-tempfile) to test a potential fix to #339.

3.18.0

  • Update rustix to 1.0.0.
  • Make NamedTempFile::persist_noclobber atomic on Apple operating systems. It's now atomic on MacOS, Windows, and Linux (depending on the OS version and filesystem used).

3.17.1

  • Fix build with windows-sys 0.52. Unfortunately, we have no CI for older windows-sys versions at the moment...

3.17.0

  • Make sure to use absolute paths in when creating unnamed temporary files (avoids a small race in the "immediate unlink" logic) and in Builder::make_in (when creating temporary files of arbitrary types).
  • Prevent a theoretical crash that could (maybe) happen when a temporary file is created from a drop function run in a TLS destructor. Nobody has actually reported a case of this happening in practice and I have been unable to create this scenario in a test.
  • When reseeding with getrandom, use platform (e.g., CPU) specific randomness sources where possible.
  • Clarify some documentation.
  • Unlink unnamed temporary files on windows immediately when possible instead of waiting for the handle to be closed. We open files with "Unix" semantics, so this is generally possible.
Commits

Updates clap from 4.5.23 to 4.5.35

Release notes

Sourced from clap's releases.

v4.5.35

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

v4.5.34

[4.5.34] - 2025-03-27

Fixes

  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

v4.5.33

[4.5.33] - 2025-03-26

Fixes

  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

v4.5.32

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark

v4.5.31

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>

v4.5.30

[4.5.30] - 2025-02-17

Fixes

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

[4.5.34] - 2025-03-27

Fixes

  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

[4.5.33] - 2025-03-26

Fixes

  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

[4.5.29] - 2025-02-11

Fixes

... (truncated)

Commits
  • 55a18f5 chore: Release
  • 3b05635 fix(complete): Ensure new enough clap is used
  • 5d2cdac chore: Release
  • f1c10eb docs: Update changelog
  • a4d1a7f chore(ci): Take a break from template updates
  • e95ed39 Merge pull request #5775 from vivienm/master
  • 18f8d4c chore(deps): Update Rust Stable to v1.82 (#5788)
  • f35d8e0 Merge pull request #5787 from epage/template
  • 1389d7d chore: Update from '_rust/main' template
  • dbc9faa chore(ci): Initialize git for template update
  • Additional commits viewable in compare view

Updates chrono from 0.4.39 to 0.4.40

Release notes

Sourced from chrono's releases.

0.4.40

What's Changed

Commits
  • 2b7a28e Bump version to 0.4.40
  • 6d29c8a Add quarter (%q) date string specifier
  • 07216ae Upgrade to windows-bindgen 0.60
  • bf1973c Use similar-asserts to show bindgen diff
  • d0f8b59 Restrict MSRV to check --lib
  • 1f345fd Switch to 2024 idiom
  • 7f6cf5e Switch to 2024 style
  • 11d227a Apply suggestions from clippy 1.85
  • 15e287b Use NaiveDateTime for internal tz_info methods. (#1658)
  • 8317e7c docs: fix minor typo
  • Additional commits viewable in compare view

Updates diffy from 0.4.0 to 0.4.2

Changelog

Sourced from diffy's changelog.

[0.4.2] - 2025-01-29

Added

  • #37 Allow configuring the "No newline at end of file" message from being printed when formatting a patch.
  • #38 Add support for configuring suppress_blank_empty.

[0.4.1] - 2025-01-29

Added

  • #36 Add ability to configure filenames when creating a patch with DiffOptions.
Commits
  • 4813ce7 diffy 0.4.2
  • 63ee6eb chore: add comment about requirement to work with in-memory text
  • 78e2fdd patch: add support for configuring suppress_blank_empty (#38)
  • acff31e patch: allow configuring the "No newline at end of file" message (#37)
  • c7df5fb diffy 0.4.1
  • 26322ac feat: control filenames in DiffOptions (#36)
  • See full diff in compare view

Updates zip from 2.4.1 to 2.6.0

Release notes

Sourced from zip's releases.

v2.6.0

🚀 Features

  • Add support for time::PrimitiveDateTime (#322)
  • Add jiff integration (#323)

🐛 Bug Fixes

  • improve error message for duplicated file (#277)

v2.5.0

🚀 Features

  • Add support for time::PrimitiveDateTime (#322)
  • Add jiff integration (#323)

🐛 Bug Fixes

  • improve error message for duplicated file (#277)

v2.4.2

🐛 Bug Fixes

  • deep_copy_file produced a mangled file header on big-endian platforms (#309)
Changelog

Sourced from zip's changelog.

Changelog

2.5.0 - 2025-03-23

🚀 Features

  • Add support for time::PrimitiveDateTime (#322)
  • Add jiff integration (#323)

🐛 Bug Fixes

  • improve error message for duplicated file (#277)

2.4.2 - 2025-03-18

🐛 Bug Fixes

  • deep_copy_file produced a mangled file header on big-endian platforms (#309)
Commits
  • 081443d chore: Update crate version to trigger relelase-plz
  • e4e7010 doc: Update 6-month MSRV policy, since Rust now releases minor versions more ...
  • f24ffa9 fix handling decryption with msdos date of 0 (#327)
  • 81ac002 First pass (#331)
  • 77cde6a chore: release v2.5.0 (#325)
  • 7613e6b feat: Add support for time::PrimitiveDateTime (#322)
  • a7b80cf deps: remove thiserror and displaydoc dependencies (#324)
  • ef8aa70 feat: Add jiff integration (#323)
  • c9a5175 fix: improve error message for duplicated file (#277)
  • 2283915 chore: release v2.4.2 (#320)
  • Additional commits viewable in compare view

Updates sysinfo from 0.33.1 to 0.34.2

Changelog

Sourced from sysinfo's changelog.

0.34.2

  • FreeBSD: Fix segfault when refreshing processes.

0.34.1

  • macOS: Remove forgotten debug print.

0.34.0

  • multithread feature is disabled by default.
  • Add new Process methods: accumulated_cpu_time, exists, open_files and open_files_limit.
  • Process::wait method now returns Option<ExitStatus>.
  • Add new System methods: distribution_id_like and kernel_long_version.
  • Turn System::physical_core_count method into an associated function.
  • Make System::refresh_all and System::refresh_specifics methods remove dead processes.
  • Add new ProcessRefreshKind refresh: tasks.
  • Fix Group docs.
  • Implement Deserialize trait on DiskKind, MacAddr, IpNetwork, ProcessStatus, Signal and ThreadKind.
  • Implement FromStr trait on IpNetwork and MacAddr.
  • Implement Hash trait on DiskKind, MacAddr, ProcessStatus and Signal.
  • macOS: Removed processes are now correctly handled when refreshing processes.
  • macOS: Strenghten dist list refresh.
  • macOS: Fix internal cfg handling which triggered compilation failures in some specific cases.
  • Linux: max cgroups memory is more reliant in case of wrong input.
  • Linux: Fix processes tasks update.
  • Linux: Improve disks retrieval.
  • Windows: Fix antivirus considering programs using sysinfo as viruses by replacing uses of NtQueryInformationProcess with other "mainstream" Windows API.
  • Windows: Improve CPU usage computation efficiency.
  • FreeBSD: Improve process_procs when there is only one process to refresh.
Commits

Updates gix-path from 0.10.13 to 0.10.15

Release notes

Sourced from gix-path's releases.

gix-path v0.10.15

Bug Fixes

  • Check prefix and prefer shim in gix_path::env::shell() This makes a few changes to make shell() more robust:

    1. Check the last two components of the path git --exec-path gave, to make sure they are libexec/git-core.

    (The check is done in such a way that the separator may be / or \, though a \ separator here would be unexpected. We permit it because it may plausibly be present due to an overriden Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 4, 2025
Copy link

vercel bot commented Apr 4, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
gitbutler-components ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 5, 2025 10:58am
gitbutler-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 5, 2025 10:58am

Bumps the rust-updates group with 35 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bstr](https://github.com/BurntSushi/bstr) | `1.11.1` | `1.11.3` |
| [insta](https://github.com/mitsuhiko/insta) | `1.42.1` | `1.42.2` |
| [git2](https://github.com/rust-lang/git2-rs) | `0.20.0` | `0.20.1` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.12.1` | `1.16.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.217` | `1.0.219` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.9` | `2.0.12` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.42.0` | `1.44.1` |
| [keyring](https://github.com/hwchen/keyring-rs) | `3.6.1` | `3.6.2` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.97` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.16.0` | `3.19.1` |
| [clap](https://github.com/clap-rs/clap) | `4.5.23` | `4.5.35` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.40` |
| [diffy](https://github.com/bmwill/diffy) | `0.4.0` | `0.4.2` |
| [zip](https://github.com/zip-rs/zip2) | `2.4.1` | `2.6.0` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.33.1` | `0.34.2` |
| [gix-path](https://github.com/GitoxideLabs/gitoxide) | `0.10.13` | `0.10.15` |
| [windows](https://github.com/microsoft/windows-rs) | `0.58.0` | `0.61.1` |
| [strum](https://github.com/Peternator7/strum) | `0.26.3` | `0.27.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.138` | `1.0.140` |
| [infer](https://github.com/bojand/infer) | `0.16.0` | `0.19.0` |
| [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.27` |
| [gix-utils](https://github.com/GitoxideLabs/gitoxide) | `0.1.13` | `0.2.0` |
| [tauri-plugin-dialog](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.1` |
| [tauri-plugin-http](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.4.3` |
| [tauri-plugin-log](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.2` |
| [tauri-plugin-os](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.1` |
| [tauri-plugin-process](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.1` |
| [tauri-plugin-single-instance](https://github.com/tauri-apps/plugins-workspace) | `2.2.2` | `2.2.3` |
| [tauri-plugin-updater](https://github.com/tauri-apps/plugins-workspace) | `2.3.0` | `2.7.0` |
| [tauri-plugin-window-state](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.2` |
| [open](https://github.com/Byron/open-rs) | `5.3.1` | `5.3.2` |
| [tauri-plugin-clipboard-manager](https://github.com/tauri-apps/plugins-workspace) | `2.2.1` | `2.2.2` |
| [once_cell](https://github.com/matklad/once_cell) | `1.20.2` | `1.21.3` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.13` | `0.7.14` |
| [rustc-hash](https://github.com/rust-lang/rustc-hash) | `2.1.0` | `2.1.1` |



Updates `bstr` from 1.11.1 to 1.11.3
- [Commits](BurntSushi/bstr@1.11.1...1.11.3)

Updates `insta` from 1.42.1 to 1.42.2
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.42.1...1.42.2)

Updates `git2` from 0.20.0 to 0.20.1
- [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/git2-rs@git2-0.20.0...git2-0.20.1)

Updates `uuid` from 1.12.1 to 1.16.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.12.1...v1.16.0)

Updates `serde` from 1.0.217 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.217...v1.0.219)

Updates `thiserror` from 2.0.9 to 2.0.12
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.9...2.0.12)

Updates `tokio` from 1.42.0 to 1.44.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.42.0...tokio-1.44.1)

Updates `keyring` from 3.6.1 to 3.6.2
- [Release notes](https://github.com/hwchen/keyring-rs/releases)
- [Changelog](https://github.com/open-source-cooperative/keyring-rs/blob/master/CHANGELOG.md)
- [Commits](open-source-cooperative/keyring-rs@v3.6.1...v3.6.2)

Updates `anyhow` from 1.0.95 to 1.0.97
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.95...1.0.97)

Updates `tempfile` from 3.16.0 to 3.19.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.16.0...v3.19.1)

Updates `clap` from 4.5.23 to 4.5.35
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.23...clap_complete-v4.5.35)

Updates `chrono` from 0.4.39 to 0.4.40
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.39...v0.4.40)

Updates `diffy` from 0.4.0 to 0.4.2
- [Changelog](https://github.com/bmwill/diffy/blob/master/CHANGELOG.md)
- [Commits](bmwill/diffy@0.4.0...0.4.2)

Updates `zip` from 2.4.1 to 2.6.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.4.1...v2.6.0)

Updates `sysinfo` from 0.33.1 to 0.34.2
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/GuillaumeGomez/sysinfo/commits)

Updates `gix-path` from 0.10.13 to 0.10.15
- [Release notes](https://github.com/GitoxideLabs/gitoxide/releases)
- [Changelog](https://github.com/GitoxideLabs/gitoxide/blob/main/CHANGELOG.md)
- [Commits](GitoxideLabs/gitoxide@gix-path-v0.10.13...gix-path-v0.10.15)

Updates `windows` from 0.58.0 to 0.61.1
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `strum` from 0.26.3 to 0.27.1
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.26.3...v0.27.1)

Updates `serde_json` from 1.0.138 to 1.0.140
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.138...v1.0.140)

Updates `infer` from 0.16.0 to 0.19.0
- [Release notes](https://github.com/bojand/infer/releases)
- [Commits](bojand/infer@v0.16.0...v0.19.0)

Updates `log` from 0.4.22 to 0.4.27
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.22...0.4.27)

Updates `gix-utils` from 0.1.13 to 0.2.0
- [Release notes](https://github.com/GitoxideLabs/gitoxide/releases)
- [Changelog](https://github.com/GitoxideLabs/gitoxide/blob/main/CHANGELOG.md)
- [Commits](GitoxideLabs/gitoxide@gix-utils-v0.1.13...gix-utils-v0.2.0)

Updates `tauri-plugin-dialog` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...os-v2.2.1)

Updates `tauri-plugin-fs` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...os-v2.2.1)

Updates `tauri-plugin-http` from 2.2.0 to 2.4.3
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...http-v2.4.3)

Updates `tauri-plugin-log` from 2.2.0 to 2.2.2
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...log-v2.2.2)

Updates `tauri-plugin-os` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...os-v2.2.1)

Updates `tauri-plugin-process` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...os-v2.2.1)

Updates `tauri-plugin-single-instance` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@log-v2.2.2...log-v2.2.3)

Updates `tauri-plugin-updater` from 2.3.0 to 2.7.0
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@log-v2.3.0...updater-v2.7.0)

Updates `tauri-plugin-window-state` from 2.2.0 to 2.2.2
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...log-v2.2.2)

Updates `open` from 5.3.1 to 5.3.2
- [Release notes](https://github.com/Byron/open-rs/releases)
- [Changelog](https://github.com/Byron/open-rs/blob/main/changelog.md)
- [Commits](Byron/open-rs@v5.3.1...v5.3.2)

Updates `tauri-plugin-clipboard-manager` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.1...log-v2.2.2)

Updates `once_cell` from 1.20.2 to 1.21.3
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.20.2...v1.21.3)

Updates `tokio-util` from 0.7.13 to 0.7.14
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.13...tokio-util-0.7.14)

Updates `rustc-hash` from 2.1.0 to 2.1.1
- [Changelog](https://github.com/rust-lang/rustc-hash/blob/master/CHANGELOG.md)
- [Commits](rust-lang/rustc-hash@v2.1.0...v2.1.1)

Updates `rustix` from 1.0.2 to 1.0.5
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md)
- [Commits](bytecodealliance/rustix@v1.0.2...v1.0.5)

---
updated-dependencies:
- dependency-name: bstr
  dependency-version: 1.11.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: insta
  dependency-version: 1.42.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: git2
  dependency-version: 0.20.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: uuid
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: thiserror
  dependency-version: 2.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tokio
  dependency-version: 1.44.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: keyring
  dependency-version: 3.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: anyhow
  dependency-version: 1.0.97
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tempfile
  dependency-version: 3.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: clap
  dependency-version: 4.5.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: chrono
  dependency-version: 0.4.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: diffy
  dependency-version: 0.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: zip
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: sysinfo
  dependency-version: 0.34.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: gix-path
  dependency-version: 0.10.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: windows
  dependency-version: 0.61.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: strum
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: serde_json
  dependency-version: 1.0.140
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: infer
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: log
  dependency-version: 0.4.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: gix-utils
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: tauri-plugin-dialog
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-fs
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-http
  dependency-version: 2.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: tauri-plugin-log
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-os
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-process
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-single-instance
  dependency-version: 2.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-updater
  dependency-version: 2.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: tauri-plugin-window-state
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: open
  dependency-version: 5.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-clipboard-manager
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: once_cell
  dependency-version: 1.21.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: tokio-util
  dependency-version: 0.7.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: rustc-hash
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: rustix
  dependency-version: 1.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 5, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 5, 2025
@dependabot dependabot bot deleted the dependabot/cargo/rust-updates-1daf0973e1 branch April 5, 2025 15:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants