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 all group in /src-tauri with 18 updates #203

Merged
merged 1 commit into from
Mar 18, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2024

Bumps the all group in /src-tauri with 18 updates:

Package From To
anyhow 1.0.80 1.0.81
async-recursion 1.0.5 1.1.0
async-trait 0.1.77 0.1.78
brotli 3.4.0 3.5.0
bytemuck 1.14.3 1.15.0
clipboard-win 5.2.0 5.3.0
h2 0.3.24 0.3.25
new_debug_unreachable 1.0.4 1.0.6
os_info 3.7.0 3.8.1
proc-macro2 1.0.78 1.0.79
reqwest 0.11.25 0.11.26
serde_with 3.6.1 3.7.0
serde_with_macros 3.6.1 3.7.0
system-configuration 0.6.0 0.5.1
system-configuration-sys 0.6.0 0.5.0
thiserror 1.0.57 1.0.58
thiserror-impl 1.0.57 1.0.58
tree_magic_mini 3.0.3 3.1.4

Updates anyhow from 1.0.80 to 1.0.81

Release notes

Sourced from anyhow's releases.

1.0.81

  • Make backtrace support available when using -Dwarnings (#354)
Commits

Updates async-recursion from 1.0.5 to 1.1.0

Release notes

Sourced from async-recursion's releases.

v1.1.0

What's Changed

New Contributors

Full Changelog: dcchut/async-recursion@v1.0.5...v1.1.0

Commits

Updates async-trait from 0.1.77 to 0.1.78

Release notes

Sourced from async-trait's releases.

0.1.78

  • Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up (#260)
Commits
  • c73061d Release 0.1.78
  • b6314bc Refactor inferred bound filtering
  • 8d51928 Merge pull request #262 from dtolnay/asyncspan
  • c98a408 Minimize use of async token's span in expanded code
  • 2f5343c Merge pull request #261 from dtolnay/inferredbound
  • 1a01bb4 Skip needlessly generating inferred bounds during ?Send
  • e68d68c Merge pull request #260 from dtolnay/qualifications
  • 75879e8 Ignore intentional unused_qualifications in a regression test
  • 4cf4ff6 Ignore unused_qualifications rustc lint in generated code
  • 2002954 Reproduce unused_qualifications lint in tests
  • Additional commits viewable in compare view

Updates brotli from 3.4.0 to 3.5.0

Commits

Updates bytemuck from 1.14.3 to 1.15.0

Changelog

Sourced from bytemuck's changelog.

1.15.0

This primarily relaxes the bounds on a From impl.

Previously:

impl<T: NoUninit> From<Box<T>> for BoxBytes

Now:

impl<T: ?Sized + sealed::BoxBytesOf> From<Box<T>> for BoxBytes

All related functions and methods are similarly updated.

We believe this to be backwards compatible with all previous uses, and now BoxBytes can be converted to/from more types than before.

Commits

Updates clipboard-win from 5.2.0 to 5.3.0

Commits

Updates h2 from 0.3.24 to 0.3.25

Release notes

Sourced from h2's releases.

v0.3.25

What's Changed

Full Changelog: hyperium/h2@v0.3.24...v0.3.25

Changelog

Sourced from h2's changelog.

0.3.25 (March 15, 2024)

  • Improve performance decoding many headers.
Commits

Updates new_debug_unreachable from 1.0.4 to 1.0.6

Commits

Updates os_info from 3.7.0 to 3.8.1

Release notes

Sourced from os_info's releases.

os_info 3.8.1

  • Build on FreeSBD has been fixed. (#372)

  • Build on Illumos has been fixed. (#373)

  • Build on NetBSD has been fixed. (#374)

  • Few more regressions introduced in the 3.8.0 release were (hopefully) fixed.

os_info 3.8.0

  • The windows-sys crate instead of winapi is now used internally. (#341)

  • Architecture information for Windows targets has been added. (#345)

  • Artix Linux detection has been fixed. (#348)

  • AIX support has been added. (#349)

  • Kali Linux support has been added. (#350)

  • openSUSE Tumbleweed detection has been fixed. (#353)

  • Version parsing from lsb_release has been added. (#354)

  • HardenedBSD detection has been fixed. (#358)

  • Ultramarine Linux support has been added. (#359)

  • AlmaLinux and Rocky Linux support has been added. (#360)

  • Ultramarine Linux support has been added. (#363)

  • Void Linux support has been added. (#365)

Changelog

Sourced from os_info's changelog.

[3.8.1] (2024-03-17)

[3.8.0] (2024-03-12)

  • The windows-sys crate instead of winapi is now used internally. (#341)

  • Architecture information for Windows targets has been added. (#345)

  • Artix Linux detection has been fixed. (#348)

  • AIX support has been added. (#349)

  • Kali Linux support has been added. (#350)

  • openSUSE Tumbleweed detection has been fixed. (#353)

  • Version parsing from lsb_release has been added. (#354)

  • HardenedBSD detection has been fixed. (#358)

  • Ultramarine Linux support has been added. (#359)

  • AlmaLinux and Rocky Linux support has been added. (#360)

  • Ultramarine Linux support has been added. (#363)

  • Void Linux support has been added. (#365)

Commits
  • 773d319 Merge pull request #376 from stanislav-tkach/3-8-1-release
  • f63ff19 Release the 3.8.1 version
  • 452c3bc Merge pull request #374 from YOU54F/patch-1
  • 9e3bf69 Merge pull request #373 from citrus-it/illumos
  • 9986b75 Merge pull request #372 from yonasBSD/yonas-patch-1
  • 62a4aeb fix: netbsd - uname requires arg in 3.8.0
  • 4fd9abc Fix build on illumos
  • 83fc567 Fix build on FreeBSD.
  • 93f9921 Merge pull request #369 from stanislav-tkach/changelog-link-fix
  • ea4e2a8 Fix a link in the changelog
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.78 to 1.0.79

Release notes

Sourced from proc-macro2's releases.

1.0.79

  • Clean up dead code
Commits
  • 4ba4ab1 Release 1.0.79
  • b176581 Prevent new lint from turning off nightly span support under -Dwarnings
  • b9cd864 Fix dead_code warning on fallback SourceFile
  • e94f432 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 18c75c6 Ignore dead_code warning in test
  • 5cd21eb Update ui test suite to nightly-2024-02-01
  • See full diff in compare view

Updates reqwest from 0.11.25 to 0.11.26

Release notes

Sourced from reqwest's releases.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.
Changelog

Sourced from reqwest's changelog.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.
Commits

Updates serde_with from 3.6.1 to 3.7.0

Release notes

Sourced from serde_with's releases.

serde_with v3.7.0

Added

Fixed

  • Detect conflicting schema_with attributes on fields with schemars annotations by @​swlynch99 (#715) This extends the existing avoidance mechanism to a new variant fixing #712.
Commits
  • bcda3fa Bump version to 3.7.0 (#720)
  • a446da1 Bump version to 3.7.0
  • 7e9772f Implement JsonSchemaAs for OneOrMany (#719)
  • 5e36083 Add impls and tests for OneOrMany
  • c5c35db Implement JsonSchemaAs for KeyValueMap (#713)
  • 046f820 Bump the github-actions group with 1 update (#718)
  • 7e87fe5 Bump the github-actions group with 1 update
  • ffade77 Add JsonSchemaAs impl for IfIsHumanReadable (#717)
  • bb2ab60 Add JsonSchemaAs impl for IfIsHumanReadable
  • a804257 Implement JsonSchemaAs for KeyValueMap
  • Additional commits viewable in compare view

Updates serde_with_macros from 3.6.1 to 3.7.0

Release notes

Sourced from serde_with_macros's releases.

serde_with v3.7.0

Added

Fixed

  • Detect conflicting schema_with attributes on fields with schemars annotations by @​swlynch99 (#715) This extends the existing avoidance mechanism to a new variant fixing #712.
Commits
  • bcda3fa Bump version to 3.7.0 (#720)
  • a446da1 Bump version to 3.7.0
  • 7e9772f Implement JsonSchemaAs for OneOrMany (#719)
  • 5e36083 Add impls and tests for OneOrMany
  • c5c35db Implement JsonSchemaAs for KeyValueMap (#713)
  • 046f820 Bump the github-actions group with 1 update (#718)
  • 7e87fe5 Bump the github-actions group with 1 update
  • ffade77 Add JsonSchemaAs impl for IfIsHumanReadable (#717)
  • bb2ab60 Add JsonSchemaAs impl for IfIsHumanReadable
  • a804257 Implement JsonSchemaAs for KeyValueMap
  • Additional commits viewable in compare view

Updates system-configuration from 0.6.0 to 0.5.1

Changelog

Sourced from system-configuration's changelog.

[0.6.0] - 2024-01-31

Changed

  • Bump minimum supported Rust version (MSRV) to 1.64.0.
  • Breaking: Mark SCNetworkReachability::schedule_with_runloop and unschedule_from_runloop as unsafe. They accept a raw pointer that it dereferences. Figuring out a safe API around this is left as an exercise for the future.
  • Breaking: ReachabilityFlags no longer implements Ord or PartialOrd. It also replaces the from_bits_unchecked constructor with other (safe) from_bits_* constructors.

Fixed

  • Fix memory leak in SCNetworkReachability::set_callback.
  • Fix builds on iOS by removing references to deprecated interface type kSCNetworkInterfaceTypeIrDA. Also remove constant for bridge network interfaces (kSCNetworkInterfaceTypeBridge).

[0.5.1] - 2023-05-15

Added

  • Add bindings for SCNetworkSet and SCNetworkService

[0.5.0] - 2022-01-03

Changed

  • Upgrade crates to Rust 2021 edition.
  • Bump minimum supported Rust version (MSRV) to 1.56.0.
  • Upgrade core-foundation to 0.9 and core-foundation-sys to 0.8. This is a breaking change since those crates are publicly re-exported from these crates.

[0.4.1] - 2020-06-04

Fixed

  • Bump the required libc version from 0.2.0 to 0.2.49 to fix the build

[0.4.0] - 2020-06-04

Added

  • Add bindings for SCNetworkInterface.
  • Add bindings for SCNetworkReachability and related types.

Changed

  • Bump minimum supported Rust version to 1.36
  • Update core-foundation dependency to 0.7

Fixed

  • Move SCNetworkReachability and related types from network_configuration into their own module in the system-configuration-sys crate.

[0.3.0] - 2019-10-16

Added

... (truncated)

Commits
  • 727876b Bump MSRV to 1.56.0 due to Edition 2021
  • c654aea Upgrade to Rust edition 2021
  • 0d69efd Merge branch 'use-assert-instead-of-panic'
  • 663839d Fix network reachability tests
  • a7efa56 Clean/fix cargo metadata
  • ac7e693 Merge branch 'bump-dependencies'
  • f8e9bff Bump core-foundation to 0.9
  • 216ce60 Merge branch 'migrate-ci-to-github-actions'
  • 08c72a6 Bump MSRV
  • 490ac06 Remove Travis CI configuration
  • Additional commits viewable in compare view

Updates system-configuration-sys from 0.6.0 to 0.5.0

Changelog

Sourced from system-configuration-sys's changelog.

[0.6.0] - 2024-01-31

Changed

  • Bump minimum supported Rust version (MSRV) to 1.64.0.
  • Breaking: Mark SCNetworkReachability::schedule_with_runloop and unschedule_from_runloop as unsafe. They accept a raw pointer that it dereferences. Figuring out a safe API around this is left as an exercise for the future.
  • Breaking: ReachabilityFlags no longer implements Ord or PartialOrd. It also replaces the from_bits_unchecked constructor with other (safe) from_bits_* constructors.

Fixed

  • Fix memory leak in SCNetworkReachability::set_callback.
  • Fix builds on iOS by removing references to deprecated interface type kSCNetworkInterfaceTypeIrDA. Also remove constant for bridge network interfaces (kSCNetworkInterfaceTypeBridge).

[0.5.1] - 2023-05-15

Added

  • Add bindings for SCNetworkSet and SCNetworkService

[0.5.0] - 2022-01-03

Changed

  • Upgrade crates to Rust 2021 edition.
  • Bump minimum supported Rust version (MSRV) to 1.56.0.
  • Upgrade core-foundation to 0.9 and core-foundation-sys to 0.8. This is a breaking change since those crates are publicly re-exported from these crates.

[0.4.1] - 2020-06-04

Fixed

  • Bump the required libc version from 0.2.0 to 0.2.49 to fix the build

[0.4.0] - 2020-06-04

Added

  • Add bindings for SCNetworkInterface.
  • Add bindings for SCNetworkReachability and related types.

Changed

  • Bump minimum supported Rust version to 1.36
  • Update core-foundation dependency to 0.7

Fixed

  • Move SCNetworkReachability and related types from network_configuration into their own module in the system-configuration-sys crate.

[0.3.0] - 2019-10-16

Added

... (truncated)

Commits
  • 727876b Bump MSRV to 1.56.0 due to Edition 2021
  • c654aea Upgrade to Rust edition 2021
  • 0d69efd Merge branch 'use-assert-instead-of-panic'
  • 663839d Fix network reachability tests
  • a7efa56 Clean/fix cargo metadata
  • ac7e693 Merge branch 'bump-dependencies'
  • f8e9bff Bump core-foundation to 0.9
  • 216ce60 Merge branch 'migrate-ci-to-github-actions'
  • 08c72a6 Bump MSRV
  • 490ac06 Remove Travis CI configuration
  • Additional commits viewable in compare view

Updates thiserror from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits

Updates thiserror-impl from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror-impl's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits

Updates tree_magic_mini from 3.0.3 to 3.1.4

Release notes

Sourced from tree_magic_mini's releases.

v3.1.4

  • Fixed compile error on Rust toolchains older than 1.74.
  • Updated documentation.

Full Changelog: mbrubeck/tree_magic@v3.1.3...v3.1.4

v3.1.3

  • Remove debugging code.

Full Changelog: mbrubeck/tree_magic@v3.1.2...v3.1.3

v3.1.2

Full Changelog: mbrubeck/tree_magic@v3.1.1...v3.1.2

v3.1.1

Full Changelog: mbrubeck/tree_magic@v3.1.0...v3.1.1

v3.1.0

  • Added from_file and match_file methods.
  • Performance improvements and reduced memory use.
  • Removed dependencies on lazy_static and bytecount.
  • Miscellaneous code cleanup and simplification.

Full Changelog: mbrubeck/tree_magic@v3.0.3...v3.1.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group in /src-tauri with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.80` | `1.0.81` |
| [async-recursion](https://github.com/dcchut/async-recursion) | `1.0.5` | `1.1.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.77` | `0.1.78` |
| [brotli](https://github.com/dropbox/rust-brotli) | `3.4.0` | `3.5.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.14.3` | `1.15.0` |
| [clipboard-win](https://github.com/DoumanAsh/clipboard-win) | `5.2.0` | `5.3.0` |
| [h2](https://github.com/hyperium/h2) | `0.3.24` | `0.3.25` |
| [new_debug_unreachable](https://github.com/mbrubeck/rust-debug-unreachable) | `1.0.4` | `1.0.6` |
| [os_info](https://github.com/stanislav-tkach/os_info) | `3.7.0` | `3.8.1` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.78` | `1.0.79` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.25` | `0.11.26` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.6.1` | `3.7.0` |
| [serde_with_macros](https://github.com/jonasbb/serde_with) | `3.6.1` | `3.7.0` |
| [system-configuration](https://github.com/mullvad/system-configuration-rs) | `0.6.0` | `0.5.1` |
| [system-configuration-sys](https://github.com/mullvad/system-configuration-rs) | `0.6.0` | `0.5.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.58` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.58` |
| [tree_magic_mini](https://github.com/mbrubeck/tree_magic) | `3.0.3` | `3.1.4` |


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

Updates `async-recursion` from 1.0.5 to 1.1.0
- [Release notes](https://github.com/dcchut/async-recursion/releases)
- [Commits](dcchut/async-recursion@v1.0.5...v1.1.0)

Updates `async-trait` from 0.1.77 to 0.1.78
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.77...0.1.78)

Updates `brotli` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/dropbox/rust-brotli/releases)
- [Commits](https://github.com/dropbox/rust-brotli/commits)

Updates `bytemuck` from 1.14.3 to 1.15.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.14.3...v1.15.0)

Updates `clipboard-win` from 5.2.0 to 5.3.0
- [Commits](https://github.com/DoumanAsh/clipboard-win/commits)

Updates `h2` from 0.3.24 to 0.3.25
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/v0.3.25/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.24...v0.3.25)

Updates `new_debug_unreachable` from 1.0.4 to 1.0.6
- [Commits](mbrubeck/rust-debug-unreachable@v1.0.4...v1.0.6)

Updates `os_info` from 3.7.0 to 3.8.1
- [Release notes](https://github.com/stanislav-tkach/os_info/releases)
- [Changelog](https://github.com/stanislav-tkach/os_info/blob/master/CHANGELOG.md)
- [Commits](stanislav-tkach/os_info@v3.7.0...v3.8.1)

Updates `proc-macro2` from 1.0.78 to 1.0.79
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.78...1.0.79)

Updates `reqwest` from 0.11.25 to 0.11.26
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.25...v0.11.26)

Updates `serde_with` from 3.6.1 to 3.7.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.6.1...v3.7.0)

Updates `serde_with_macros` from 3.6.1 to 3.7.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.6.1...v3.7.0)

Updates `system-configuration` from 0.6.0 to 0.5.1
- [Changelog](https://github.com/mullvad/system-configuration-rs/blob/main/CHANGELOG.md)
- [Commits](mullvad/system-configuration-rs@v0.6.0...v0.5.1)

Updates `system-configuration-sys` from 0.6.0 to 0.5.0
- [Changelog](https://github.com/mullvad/system-configuration-rs/blob/main/CHANGELOG.md)
- [Commits](mullvad/system-configuration-rs@v0.6.0...v0.5.0)

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

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

Updates `tree_magic_mini` from 3.0.3 to 3.1.4
- [Release notes](https://github.com/mbrubeck/tree_magic/releases)
- [Changelog](https://github.com/mbrubeck/tree_magic/blob/mini/CHANGELOG.md)
- [Commits](mbrubeck/tree_magic@v3.0.3...v3.1.4)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: async-recursion
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: brotli
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: bytemuck
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: clipboard-win
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: h2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: new_debug_unreachable
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: os_info
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: reqwest
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_with
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: serde_with_macros
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: system-configuration
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: system-configuration-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tree_magic_mini
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
...

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 Mar 18, 2024
@github-actions github-actions bot merged commit 9ccf4d2 into main Mar 18, 2024
4 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/src-tauri/all-2012a40208 branch March 18, 2024 14:11
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