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 21 updates #7331

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 18, 2025

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

Package From To
bstr 1.11.1 1.11.3
uuid 1.12.1 1.13.2
thiserror 2.0.9 2.0.11
tokio 1.42.0 1.43.0
tempfile 3.16.0 3.17.1
diffy 0.4.0 0.4.2
once_cell 1.20.2 1.20.3
clap 4.5.23 4.5.30
gix-path 0.10.13 0.10.14
windows 0.58.0 0.59.0
strum 0.26.3 0.27.1
infer 0.16.0 0.19.0
log 0.4.22 0.4.25
gix-utils 0.1.13 0.1.14
tauri-plugin-http 2.2.0 2.3.0
tauri-plugin-log 2.2.0 2.2.1
tauri-plugin-single-instance 2.2.0 2.2.1
tauri-plugin-updater 2.3.0 2.5.0
tauri-plugin-window-state 2.2.0 2.2.1
open 5.3.1 5.3.2
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 uuid from 1.12.1 to 1.13.2

Release notes

Sourced from uuid's releases.

v1.13.2

What's Changed

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

1.13.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.13.0...1.13.1

1.13.0

⚠️ Potential Breakage

This release updates our version of getrandom to 0.3 and rand to 0.9. It is a potentially breaking change for the following users:

no-std users who enable the rng feature

uuid still uses getrandom by default on these platforms. Upgrade your version of getrandom and follow its new docs on configuring a custom backend.

wasm32-unknown-unknown users who enable the rng feature without the js feature

Upgrade your version of getrandom and follow its new docs on configuring a backend.

You'll also need to enable the rng-getrandom or rng-rand feature of uuid to force it to use getrandom as its backend:

[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]
[dependencies.getrandom]
version = "0.3"

If you're on wasm32-unknown-unknown and using the js feature of uuid you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom's web-based backend when the js feature is enabled.

What's Changed

... (truncated)

Commits
  • d8871b3 Merge pull request #805 from uuid-rs/cargo/v1.13.2
  • 7044210 prepare for 1.13.2 release
  • 7893ecc Merge pull request #804 from uuid-rs/fix/wasm-no-rng
  • bf28001 update feature docs
  • 920e8b1 add a more descriptive compile error when no rng source is available on wasm
  • 5421417 Merge pull request #799 from uuid-rs/cargo/1.13.1
  • df58674 prepare for 1.13.1 release
  • f175242 Merge pull request #797 from bushrat011899/wasm32_atomics
  • 65c31b3 Include CI Update
  • 17673a1 Fix wasm32 with atomics
  • Additional commits viewable in compare view

Updates thiserror from 2.0.9 to 2.0.11

Release notes

Sourced from thiserror's releases.

2.0.11

2.0.10

  • Support errors containing a generic type parameter's associated type in a field (#408)
Commits
  • 0f532e3 Release 2.0.11
  • 3d15543 Merge pull request #410 from dtolnay/testnostd
  • 1a226ae Disable two more integration tests in no-std mode
  • 8b5f2d7 Fix unused import in test when built without std
  • eecd247 Add CI step to test with "std" disabled
  • 8f2a76b Merge pull request #409 from Maytha8/std-tests
  • 693a6cd Add feature gate to tests that use std
  • 349f696 Release 2.0.10
  • 6cd87bc Merge pull request #408 from dtolnay/assoctype
  • 6b3e1e5 Generate trait bounds on associated types
  • Additional commits viewable in compare view

Updates tokio from 1.42.0 to 1.43.0

Release notes

Sourced from tokio's releases.

Tokio v1.43.0

1.43.0 (Jan 8th, 2025)

Added

  • net: add UdpSocket::peek methods (#7068)
  • net: add support for Haiku OS (#7042)
  • process: add Command::into_std() (#7014)
  • signal: add SignalKind::info on illumos (#6995)
  • signal: add support for realtime signals on illumos (#7029)

Fixed

  • io: don't call set_len before initializing vector in Blocking (#7054)
  • macros: suppress clippy::needless_return in #[tokio::main] (#6874)
  • runtime: fix thread parking on WebAssembly (#7041)

Changes

  • chore: use unsync loads for unsync_load (#7073)
  • io: use Buf::put_bytes in Repeat read impl (#7055)
  • task: drop the join waker of a task eagerly (#6986)

Changes to unstable APIs

  • metrics: improve flexibility of H2Histogram Configuration (#6963)
  • taskdump: add accessor methods for backtrace (#6975)

Documented

  • io: clarify ReadBuf::uninit allows initialized buffers as well (#7053)
  • net: fix ambiguity in TcpStream::try_write_vectored docs (#7067)
  • runtime: fix LocalRuntime doc links (#7074)
  • sync: extend documentation for watch::Receiver::wait_for (#7038)
  • sync: fix typos in OnceCell docs (#7047)

#6874: tokio-rs/tokio#6874 #6963: tokio-rs/tokio#6963 #6975: tokio-rs/tokio#6975 #6986: tokio-rs/tokio#6986 #6995: tokio-rs/tokio#6995 #7014: tokio-rs/tokio#7014 #7029: tokio-rs/tokio#7029 #7038: tokio-rs/tokio#7038 #7041: tokio-rs/tokio#7041 #7042: tokio-rs/tokio#7042 #7047: tokio-rs/tokio#7047 #7053: tokio-rs/tokio#7053 #7054: tokio-rs/tokio#7054 #7055: tokio-rs/tokio#7055

... (truncated)

Commits
  • 5f3296d chore: prepare Tokio v1.43.0 (#7079)
  • cc974a6 chore: prepare tokio-macros v2.5.0 (#7078)
  • 15495fd metrics: improve flexibility of H2Histogram Configuration (#6963)
  • ad41834 io: don't call set_len before initializing vector in Blocking (#7054)
  • bd3e857 runtime: move is_join_waker_set assertion in unset_waker (#7072)
  • 15f7366 runtime: fix LocalRuntime doc links (#7074)
  • fd2048d ci: split miri jobs into unit and integration tests (#7071)
  • e8f3915 chore: use unsync loads for unsync_load (#7073)
  • 67f1277 net: fix ambiguity in TcpStream::try_write_vectored docs (#7067)
  • 463502c io: clarify ReadBuf::uninit allows initialized buffers as well (#7053)
  • Additional commits viewable in compare view

Updates tempfile from 3.16.0 to 3.17.1

Changelog

Sourced from tempfile's changelog.

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
  • 714a259 chore: release 3.17.1
  • 78309ed fix: cast handle to the windows crate HANDLE (#332)
  • 6e7d167 chore: release 3.17.0
  • 3718075 doc: remove incorrect documentation about windows and open files
  • 461369f feat: delete unnamed temporary files on windows immediately
  • 78d30a2 doc: clarify "inner file will be deleted" documentation (#329)
  • 0fe11c4 doc: document how to "keep" temporary files/dirs after creation (#328)
  • 35e0629 feat: simplify getrandom call (#325)
  • 1e5059f fix: handle TLS deallocation (#324)
  • c7b2e1a chore: simplify reborrow
  • 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 once_cell from 1.20.2 to 1.20.3

Changelog

Sourced from once_cell's changelog.

Changelog

Unreleased

  • Outline initialization in race: #273.
Commits
  • d119eea Merge pull request #273 from briansmith/b/cold
  • 1a885da Make initialization in OnceNonZeroUsize::get_or_try_init #[cold].
  • See full diff in compare view

Updates clap from 4.5.23 to 4.5.30

Release notes

Sourced from clap's releases.

v4.5.30

[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

v4.5.29

[4.5.29] - 2025-02-11

Fixes

  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

v4.5.28

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

v4.5.27

[4.5.27] - 2025-01-20

Documentation

  • Iterate on tutorials and reference based on feedback

v4.5.26

[4.5.26] - 2025-01-09

Fixes

  • (error) Reduce binary size with the suggestions feature

v4.5.25

[4.5.25] - 2025-01-09

Fixes

  • (help) Reduce binary size

v4.5.24

[4.5.24] - 2025-01-07

Fixes

  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument
Changelog

Sourced from clap's changelog.

[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

  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

[4.5.27] - 2025-01-20

Documentation

  • Iterate on tutorials and reference based on feedback

[4.5.26] - 2025-01-09

Fixes

  • (error) Reduce binary size with the suggestions feature

[4.5.25] - 2025-01-09

Fixes

  • (help) Reduce binary size

[4.5.24] - 2025-01-07

Fixes

  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument
Commits
  • f40b37f chore: Release
  • 63bfe1a docs: Update changelog
  • d6bd7e2 Merge pull request #5763 from epage/complete
  • 0887593 fix(complete): Change ValueHint::Unknown to Other, from AnyPath
  • 61ebe72 chore: Release
  • 2e3fcc6 docs: Update changelog
  • 13dad4c Merge pull request #5759 from clap-rs/renovate/unicode-width-0.x
  • 3ca44c7 Merge pull request #5758 from clap-rs/renovate/terminal_size-0.x
  • d71ae66 Merge pull request #5760 from clap-rs/renovate/stable-1.x
  • a25c734 chore(deps): Update dependency STABLE to v1.81.0
  • Additional commits viewable in compare view

Updates gix-path from 0.10.13 to 0.10.14

Release notes

Sourced from gix-path's releases.

gix-path v0.10.14

Chore

  • bump rust-version to 1.70 That way clippy will allow to use the fantastic Option::is_some_and() and friends.

New Features

  • add env::core_dir()
  • add env::git_shell() to obtain the shell Git would be using. This is particularly useful to execute Git hooks.

Bug Fixes

  • rename env::login_shell() to shell() and explain what it is. This assures we don't suggest the usage of actual login shells to ever be used to execute hooks.

    Note that this is not marked as breaking change as no release was made with the old name yet.

Commit Statistics

  • 12 commits contributed to the release over the course of 55 calendar days.
  • 55 days passed between releases.
  • 4 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
    • Update all changelogs prior to release (1f6390c)
    • Merge pull request #1762 from GitoxideLabs/fix-1759 (7ec21bb)
    • Bump rust-version to 1.70 (17835bc)
    • Merge pull request #1758 from GitoxideLabs/git-shell (851a7c4)
    • Apply suggestions from code review (5400320)
    • More robust localization of sh.exe on Windows (0737c41)
    • Add env::core_dir() (73ee27a)
    • Rename env::login_shell() to shell() and explain what it is. (51bbb86)
    • Merge pull request #1752 from GitoxideLabs/git-shell (1ca480a)
    • Add env::git_shell() to obtain the shell Git would be using. (840c71d)
    • Refactor git-path tests (4ef3a8d)
    • Merge pull request #1701 from GitoxideLabs/release (e8b3b41)
Commits
  • dea106a Release gix-utils v0.1.14, gix-actor v0.33.2, gix-hash v0.16.0, gix-trace v0....
  • 7570daa don't specify version numbers in dev-dependencies
  • 1f6390c update all changelogs prior to release
  • 1e37e95 Merge pull request #1777 from EliahKagan/run-ci/arm
  • d5dc5bf Merge pull request #1776 from EliahKagan/fuzz-next
  • 90e08f1 Merge pull request #1774 from EliahKagan/complex-graph-no-baseline-next
  • c7f5013 Let either test-32bit cancel the other on failure
  • c3d4cff Remove the test-32bit-cross job
  • fbc27b5 Install 64-bit libstdc++ in both 32-bit containers
  • cbe3793 Use the ARM runner for some 32-bit tests
  • Additional commits viewable in compare view

Updates windows from 0.58.0 to 0.59.0

Commits

Updates strum from 0.26.3 to 0.27.1

Release notes

Sourced from strum's releases.

v0.27.1

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.27.0...v0.27.1

v0.27.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from strum's changelog.

0.27.1

  • #414: Fix docrs build error.

  • #417: Mention parse_error_ty and parse_error_fn that had been left out of the docs accidentally.

  • #421#331: Implement #[strum(transparent)] attribute on IntoStaticStr, Display and AsRefStr that forwards the implmenentation to the inner value. Note that for static strings, the inner value must be convertible to an &'static str.

    #[derive(strum::Display)]
    enum SurveyResponse {
      Yes,
      No,
      #[strum(transparent)]
      Other(String)
    }
    fn main() {
    let response = SurveyResponse::Other("It was good".into());
    println!("Question: Did you have fun?");
    println!("Answer: {}", response);
    // prints: Answer: It was good
    }

0.27.0

Highlights

  • #407: Display is now correctly derived in [no_std] projects.
  • #402: EnumIter now implements Send + Sync
  • #400: EnumTryAs now handles attributes on variant fields correctly.
  • #398: strum is now on rust 2021
  • #391: EnumProperties correctly implements get_bool and get_int finally. 🎉
  • #380: FromString now supports 2 additional attributes, parse_error_ty and parse_error_fn that can be added to use a custom error type rather than the default strum error message.
    • #410: These attributes accept a Path rather than a String to improve behavior with rust-analyzer.

Breaking Changes

  • #384: MSRV is now 1.66.1
  • #391: EnumProperties doesn't provide default implementations anymore. This would have required you to manually implement this trait which should be very uncommon.

0.26.4 (strum_macros)

  • #360: Fixes bug introduced with new string interpolation feature where

... (truncated)

Commits

Updates infer from 0.16.0 to 0.19.0

Release notes

Sourced from infer's releases.

v0.19.0

Changelog

v0.19.0 - 2025-02-01

Build

  • 4256ea0 update crate version to 0.19.0

Commits

  • 4256ea0 update crate version to 0.19.0
  • 6424c63 Merge pull request #105 from grumlimited/par2
  • 4b58ab6 Par2 - added support
  • 2fcb251 Par2 - added support
  • d2f3e2f Par2 - added support
  • 2e1bdd3 Par2 - added support

v0.18.0

Changelog

v0.18.0 - 2025-02-01

Build

  • cba46eb update crate version to 0.18.0

Commits

  • cba46eb update crate version to 0.18.0
  • cbf3b9e Merge pull request #98 from sorairolake/feature/archives
  • f591327 feat(archive): Add LZ4 support
  • 51d4a37 feat(archive): Add bzip3 support

v0.17.0

Changelog

v0.17.0 - 2025-02-01

Build

  • 644cf90 update crate version

Commits

  • 644cf90 update crate version
  • 733023f fix lints
  • bbd3ba2 Merge pull request #100 from MercuryTechnologies/heix-support
  • 1ef78eb Handle heix (iOS 18)
Commits
  • 4256ea0 build: update crate version to 0.19.0
  • 6424c63 Merge pull request #105 from grumlimited/par2
  • cba46eb build: update crate version to 0.18.0
  • cbf3b9e Merge pull request #98 from sorairolake/feature/archives
  • 644cf90 build: update crate version
  • 733023f chore: fix lints
  • bbd3ba2 Merge pull request #100 from MercuryTechnologies/heix-support
  • 4b58ab6 Par2 - added support
  • 2fcb251 Par2 - added support
  • d2f3e2f Par2 - added support
  • Additional commits viewable in compare view

Updates log from 0.4.22 to 0.4.25

Release notes

Sourced from log's releases.

0.4.25

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

0.4.24 (yanked)

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

0.4.23 (yanked)

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.22...0.4.23

Changelog

Sourced from log's changelog.

[0.4.25] - 2025-01-14

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

[0.4.24] - 2025-01-11

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

[0.4.23] - 2025-01-10 (yanked)

What's Changed

New Contribut...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [bstr](https://github.com/BurntSushi/bstr) | `1.11.1` | `1.11.3` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.12.1` | `1.13.2` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.9` | `2.0.11` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.42.0` | `1.43.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.16.0` | `3.17.1` |
| [diffy](https://github.com/bmwill/diffy) | `0.4.0` | `0.4.2` |
| [once_cell](https://github.com/matklad/once_cell) | `1.20.2` | `1.20.3` |
| [clap](https://github.com/clap-rs/clap) | `4.5.23` | `4.5.30` |
| [gix-path](https://github.com/GitoxideLabs/gitoxide) | `0.10.13` | `0.10.14` |
| [windows](https://github.com/microsoft/windows-rs) | `0.58.0` | `0.59.0` |
| [strum](https://github.com/Peternator7/strum) | `0.26.3` | `0.27.1` |
| [infer](https://github.com/bojand/infer) | `0.16.0` | `0.19.0` |
| [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.25` |
| [gix-utils](https://github.com/GitoxideLabs/gitoxide) | `0.1.13` | `0.1.14` |
| [tauri-plugin-http](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.3.0` |
| [tauri-plugin-log](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.0` | `2.2.1` |
| [tauri-plugin-updater](https://github.com/tauri-apps/plugins-workspace) | `2.3.0` | `2.5.0` |
| [tauri-plugin-window-state](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.1` |
| [open](https://github.com/Byron/open-rs) | `5.3.1` | `5.3.2` |
| [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 `uuid` from 1.12.1 to 1.13.2
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.12.1...v1.13.2)

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

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

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

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 `once_cell` from 1.20.2 to 1.20.3
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.20.2...v1.20.3)

Updates `clap` from 4.5.23 to 4.5.30
- [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.30)

Updates `gix-path` from 0.10.13 to 0.10.14
- [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.14)

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

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 `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.25
- [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.25)

Updates `gix-utils` from 0.1.13 to 0.1.14
- [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.1.14)

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

Updates `tauri-plugin-log` 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...log-v2.2.1)

Updates `tauri-plugin-single-instance` 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...log-v2.2.1)

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

Updates `tauri-plugin-window-state` 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...log-v2.2.1)

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 `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)

---
updated-dependencies:
- dependency-name: bstr
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: diffy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: gix-path
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: windows
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: strum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: infer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: gix-utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-http
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: tauri-plugin-log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-single-instance
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri-plugin-updater
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: tauri-plugin-window-state
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: open
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: rustc-hash
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 18, 2025
Copy link

vercel bot commented Feb 18, 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 Feb 18, 2025 4:39pm
gitbutler-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 18, 2025 4:39pm

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