open-goal / launcher

A launcher for the OpenGOAL Project to simplify usage and installation
ISC License
62 stars 14 forks source link

build(deps): bump the backend-deps group across 1 directory with 8 updates #475

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the backend-deps group with 8 updates in the /src-tauri directory:

Package From To
flate2 1.0.28 1.0.29
reqwest 0.12.3 0.12.4
serde 1.0.197 1.0.198
serde_json 1.0.115 1.0.116
sysinfo 0.30.10 0.30.11
thiserror 1.0.58 1.0.59
wgpu 0.19.3 0.19.4
zip 0.6.6 1.1.1

Updates flate2 from 1.0.28 to 1.0.29

Release notes

Sourced from flate2's releases.

1.0.29 - with new zlib-rs feature (~zlib-ng in Rust)

With the new zlib-rs feature, a new backend is enabled that brings in a SIMD-accelerated Rust implementation.

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/flate2-rs/compare/1.0.28...1.0.29

Commits
  • 9a25bc0 Merge pull request #403 from folkertdev/bump-version-zlib-rs
  • e9c87c0 zlib-rs support version bump
  • 8a502a7 Merge pull request #402 from jongiddy/bufread-tests
  • 320e7c7 Merge pull request #400 from folkertdev/zlib-rs-c-api
  • 6a26c0c Test that BufRead and Write can be used after decoding
  • 7e6429a add zlib-rs support via the libz-rs-sys C api for zlib-rs
  • ae78497 Merge pull request #398 from rust-lang/fix-imports
  • 20bbd74 Avoid redudant imports
  • 0a584f4 Merge pull request #394 from icmccorm/main
  • 8386651 Switched to storing mz_stream as a raw pointer to fix tree borrows violation.
  • Additional commits viewable in compare view


Updates reqwest from 0.12.3 to 0.12.4

Release notes

Sourced from reqwest's releases.

v0.12.4

What's Changed

  • Add zstd support, enabled with zstd Cargo feature (thanks @​paolobarbolini!)
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

New Contributors

Changelog

Sourced from reqwest's changelog.

v0.12.4

  • Add zstd support, enabled with zstd Cargo feature.
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.
Commits


Updates serde from 1.0.197 to 1.0.198

Release notes

Sourced from serde's releases.

v1.0.198

Commits
  • c4fb923 Release 1.0.198
  • 65b7eea Merge pull request #2729 from dtolnay/saturating
  • 01cd696 Integrate Saturating<T> deserialization into impl_deserialize_num macro
  • c13b3f7 Format PR 2709
  • a6571ee Merge pull request #2709 from jbethune/master
  • 6e38aff Revert "Temporarily disable miri on doctests"
  • 3d1b19e Implement Ser+De for Saturating\<T>
  • 5b24f88 Resolve legacy_numeric_constants clippy lints
  • 74d0670 Explicitly install a Rust toolchain for cargo-outdated job
  • 3bfab6e Temporarily disable miri on doctests
  • Additional commits viewable in compare view


Updates serde_json from 1.0.115 to 1.0.116

Release notes

Sourced from serde_json's releases.

v1.0.116

Commits
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • 0baba28 Resolve legacy_numeric_constants clippy lints
  • See full diff in compare view


Updates sysinfo from 0.30.10 to 0.30.11

Changelog

Sourced from sysinfo's changelog.

0.30.11

  • macOS: Fix some invalid utf8 conversions
Commits
  • 717126a Merge pull request #1258 from GuillaumeGomez/update
  • 3fecb41 Update crate version to 0.30.11
  • 8aee0a0 Update CHANGELOG for 0.30.11
  • 438eef0 Merge pull request #1257 from JustRustThings/1256-fix-macos-process-utf8-issues
  • 1bca13a fix: remove use of from_utf8_unchecked in macos process handling
  • See full diff in compare view


Updates thiserror from 1.0.58 to 1.0.59

Release notes

Sourced from thiserror's releases.

1.0.59

  • Unblock testing of rustc debug-fmt-detail option (#297)
Commits
  • e7ad85e Release 1.0.59
  • af477ec Merge pull request #297 from dtolnay/traitident
  • f3fbd99 Implement ToTokens without reliance on {:?}
  • 508ece8 Revert "Temporarily disable miri on doctests"
  • c8c804c Explicitly install a Rust toolchain for cargo-outdated job
  • 6969595 Merge pull request #293 from dtolnay/workspacewrapper
  • 488d52f Apply RUSTC_WORKSPACE_WRAPPER
  • ba33438 Temporarily disable miri on doctests
  • See full diff in compare view


Updates wgpu from 0.19.3 to 0.19.4

Release notes

Sourced from wgpu's releases.

v0.19.4

This release includes wgpu, wgpu-core, and wgpu-hal. All other crates are unchanged.

Bug Fixes

General

  • Don't depend on bind group and bind group layout entry order in backends. This caused incorrect command execution and, in some cases, crashes. By @​ErichDonGubler in #5421.
  • Properly clean up all write_buffer/texture temporary resources. By @​robtfm in #5413.
  • Fix deadlock in certain situations when mapping buffers using wgpu-profiler. By @​cwfitzgerald in #5517

WebGPU

Changelog

Sourced from wgpu's changelog.

v0.19.4 (2024-04-17)

Bug Fixes

General

  • Don't depend on bind group and bind group layout entry order in backends. This caused incorrect severely incorrect command execution and, in some cases, crashes. By @​ErichDonGubler in #5421.
  • Properly clean up all write_buffer/texture temporary resources. By @​robtfm in #5413.
  • Fix deadlock in certain situations when mapping buffers using wgpu-profiler. By @​cwfitzgerald in #5517

WebGPU

Commits


Updates zip from 0.6.6 to 1.1.1

Changelog

Sourced from zip's changelog.

[1.1.1]

Added

  • index_for_name, index_for_path, name_for_index: get the index of a file given its path or vice-versa, without initializing metadata from the local-file header or needing to mutably borrow the ZipArchive.
  • add_symlink_from_path, shallow_copy_file_from_path, deep_copy_file_from_path, raw_copy_file_to_path: copy a file or create a symlink using AsRef<Path> arguments

Changed

  • add_directory_from_path and start_file_from_path are no longer deprecated, and they now normalize .. as well as ..

[1.1.0]

Added

  • Support for decoding LZMA.

Changed

  • Eliminated a custom AtomicU64 type by replacing it with OnceLock in the only place it's used.
  • FileOptions now has the subtype SimpleFileOptions which implements Copy but has no extra data.

[1.0.1]

Changed

  • The published package on crates.io no longer includes the tests or examples.

[1.0.0]

Changed

  • Now uses boxed slices rather than String or Vec for metadata fields that aren't likely to grow.

[0.11.0]

Added

  • Support for DEFLATE64 (decompression only).
  • Support for Zopfli compression levels up to i64::MAX.

Changed

  • InvalidPassword is now a kind of ZipError to eliminate the need for nested Result structs.
  • Updated dependencies.

[0.10.3]

... (truncated)

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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
xTVaser commented 3 months ago

There is a regression in here related to zip creation (support packages) and therefore potentially zip extraction. Debug this later before merging

dependabot[bot] commented 3 months ago

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