opengoal-launcher/src-tauri
dependabot[bot] fb33974232
build(deps): bump the backend-deps group in /src-tauri with 3 updates (#438)
Bumps the backend-deps group in /src-tauri with 3 updates:
[chrono](https://github.com/chronotope/chrono),
[thiserror](https://github.com/dtolnay/thiserror) and
[wgpu](https://github.com/gfx-rs/wgpu).

Updates `chrono` from 0.4.33 to 0.4.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chronotope/chrono/releases">chrono's
releases</a>.</em></p>
<blockquote>
<h2>0.4.34</h2>
<h1>Notable changes</h1>
<ul>
<li>In chrono 0.4.34 we finished the work to make all methods const
where doing so is supported by rust 1.61.</li>
<li>We renamed the <code>Duration</code> type to <code>TimeDelta</code>.
This removes the confusion between chrono's type and the later
<code>Duration</code> type in the standard library. It will remain
available under the old name as a type alias for compatibility.</li>
<li>The Windows implementation of <code>Local</code> is rewritten. The
new version avoids panics when the date is outside of the range
supported by windows (the years 1601 to 30828), and gives more accurate
results during DST transitions.</li>
<li>The <code>Display</code> format of <code>TimeDelta</code> is
modified to conform better to ISO 8601. Previously it converted all
values greater than 24 hours to a value with days. This is not correct,
as doing so changes the duration from an 'accurate' to a 'nominal'
representation to use ISO 8601 terms.</li>
</ul>
<h1>Fixes</h1>
<ul>
<li>Add missing range check in <code>TimeDelta::milliseconds</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1385">#1385</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
<li>Remove check for <code>DurationExceedsTimestamp</code> in
<code>DurationRound</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1403">#1403</a>,
thanks <a
href="https://github.com/joroKr21"><code>@​joroKr21</code></a>)</li>
<li>Fix localized formatting with <code>%X</code> ((<a
href="https://redirect.github.com/chronotope/pure-rust-locales/pull/12">chronotope/pure-rust-locales#12</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1420">#1420</a>)</li>
<li>Windows: base implementation on
<code>GetTimeZoneInformationForYear</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1017">#1017</a>)</li>
</ul>
<h1>Additions</h1>
<ul>
<li>Add <code>TimeDelta::try_milliseconds</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1385">#1385</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
<li>Add <code>TimeDelta::new</code> (<a
href="https://redirect.github.com/chronotope/chrono/issues/1337">#1337</a>)</li>
<li>Add <code>StrftimeItems::{parse, parse_to_owned}</code> and more
documentation (<a
href="https://redirect.github.com/chronotope/chrono/issues/1184">#1184</a>)</li>
<li>More standard traits and documentation for
<code>format::Locale</code> (via <a
href="https://redirect.github.com/chronotope/pure-rust-locales/pull/8">chronotope/pure-rust-locales#8</a>)</li>
</ul>
<h1>Changes</h1>
<ul>
<li>Rename <code>Duration</code> to <code>TimeDelta</code>, add type
alias (<a
href="https://redirect.github.com/chronotope/chrono/issues/1406">#1406</a>)</li>
<li>Make <code>TimeDelta</code> methods const (<a
href="https://redirect.github.com/chronotope/chrono/issues/1337">#1337</a>)</li>
<li>Make remaining methods of <code>NaiveDate</code>,
<code>NaiveWeek</code>, <code>NaiveTime</code> and
<code>NaiveDateTime</code> const where possible (<a
href="https://redirect.github.com/chronotope/chrono/issues/1337">#1337</a>)</li>
<li>Make methods on <code>DateTime</code> const where possible (<a
href="https://redirect.github.com/chronotope/chrono/issues/1400">#1400</a>)</li>
<li>Make <code>Display</code> format of <code>TimeDelta</code> conform
better to ISO 8601 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1328">#1328</a>)</li>
</ul>
<h1>Documentation</h1>
<ul>
<li>Fix the formatting of <code>timestamp_micros</code>'s Example doc
(<a
href="https://redirect.github.com/chronotope/chrono/issues/1338">#1338</a>
via <a
href="https://redirect.github.com/chronotope/chrono/issues/1386">#1386</a>,
thanks <a
href="https://github.com/emikitas"><code>@​emikitas</code></a>)</li>
<li>Specify branch for GitHub Actions badge and fix link (<a
href="https://redirect.github.com/chronotope/chrono/issues/1388">#1388</a>)</li>
<li>Don't mention some deprecated methods in docs (<a
href="https://redirect.github.com/chronotope/chrono/issues/1395">#1395</a>)</li>
<li>Remove stray documentation from main (<a
href="https://redirect.github.com/chronotope/chrono/issues/1397">#1397</a>)</li>
<li>Improved documentation of <code>TimeDelta</code> constructors (<a
href="https://redirect.github.com/chronotope/chrono/issues/1385">#1385</a>,
thanks <a
href="https://github.com/danwilliams"><code>@​danwilliams</code></a>)</li>
</ul>
<h1>Internal</h1>
<ul>
<li>Switch branch names: 0.4.x releases are the <code>main</code>
branch, work on 0.5 happens in the <code>0.5.x</code> branch (<a
href="https://redirect.github.com/chronotope/chrono/issues/1390">#1390</a>,
<a
href="https://redirect.github.com/chronotope/chrono/issues/1402">#1402</a>).</li>
<li>Don't use deprecated method in <code>impl Arbitrary for
DateTime</code> and set up CI test (<a
href="https://redirect.github.com/chronotope/chrono/issues/1336">#1336</a>)</li>
<li>Remove workaround for Rust &lt; 1.61 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1393">#1393</a>)</li>
<li>Bump <code>codecov/codecov-action</code> from 3 to 4 (<a
href="https://redirect.github.com/chronotope/chrono/issues/1404">#1404</a>)</li>
<li>Remove partial support for handling <code>-0000</code> offset (<a
href="https://redirect.github.com/chronotope/chrono/issues/1411">#1411</a>)</li>
<li>Move <code>TOO_LONG</code> error out of <code>parse_internal</code>
(<a
href="https://redirect.github.com/chronotope/chrono/issues/1419">#1419</a>)</li>
</ul>
<p>Thanks to all contributors on behalf of the chrono team, <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/pitdicker"><code>@​pitdicker</code></a>!</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="dc19606265"><code>dc19606</code></a>
Prepare 0.4.34</li>
<li><a
href="58a2149a8e"><code>58a2149</code></a>
Add <code>StrftimeItems::parse_to_owned</code></li>
<li><a
href="59eeb8c537"><code>59eeb8c</code></a>
Add <code>StrftimeItems::parse</code></li>
<li><a
href="79de122615"><code>79de122</code></a>
Add more documentation to
<code>StrftimeItems::new_with_locale</code></li>
<li><a
href="5b7cf85c53"><code>5b7cf85</code></a>
Add more documentation to <code>StrftimeItems::new</code></li>
<li><a
href="be6af79ae5"><code>be6af79</code></a>
Make <code>Display</code> format of <code>TimeDelta</code> conform
better to ISO 8601</li>
<li><a
href="d1cf0e9393"><code>d1cf0e9</code></a>
Add test for issue 651</li>
<li><a
href="0ef34e4da3"><code>0ef34e4</code></a>
Extend test to more distant dates</li>
<li><a
href="fc67f3e6e0"><code>fc67f3e</code></a>
Remove obsolete test</li>
<li><a
href="acb693ac64"><code>acb693a</code></a>
Windows: rewrite using <code>GetTimeZoneInformationForYear</code></li>
<li>Additional commits viewable in <a
href="https://github.com/chronotope/chrono/compare/v0.4.33...v0.4.34">compare
view</a></li>
</ul>
</details>
<br />

Updates `thiserror` from 1.0.56 to 1.0.57
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/thiserror/releases">thiserror's
releases</a>.</em></p>
<blockquote>
<h2>1.0.57</h2>
<ul>
<li>Generate more efficient <code>Display</code> impl for error message
which do not contain any interpolated value (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/286">#286</a>,
thanks <a
href="https://github.com/nyurik"><code>@​nyurik</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1d106b169c"><code>1d106b1</code></a>
Release 1.0.57</li>
<li><a
href="8a5c4d1b76"><code>8a5c4d1</code></a>
Use write_str when args only consists of trailing comma</li>
<li><a
href="f790bee2a4"><code>f790bee</code></a>
Phrase flag in terms of whether core::fmt machinery is required</li>
<li><a
href="d43b759e3a"><code>d43b759</code></a>
Ignore needless_raw_string_hashes pedantic clippy lint in test</li>
<li><a
href="d09c418295"><code>d09c418</code></a>
Touch up PR 286</li>
<li><a
href="097251d2f5"><code>097251d</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/286">#286</a>
from nyurik/litstr</li>
<li><a
href="cd79876fe8"><code>cd79876</code></a>
optimize by avoiding second fmt.value() call</li>
<li><a
href="d7e738e1d8"><code>d7e738e</code></a>
Optimize simple literals for Display::fmt</li>
<li><a
href="0717de3f50"><code>0717de3</code></a>
Update ui test suite to nightly-2024-02-08</li>
<li><a
href="c7c75470ec"><code>c7c7547</code></a>
Update ui test suite to nightly-2024-01-31</li>
<li>See full diff in <a
href="https://github.com/dtolnay/thiserror/compare/1.0.56...1.0.57">compare
view</a></li>
</ul>
</details>
<br />

Updates `wgpu` from 0.18.0 to 0.19.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/releases">wgpu's
releases</a>.</em></p>
<blockquote>
<h2>v0.19.1</h2>
<p>This release includes <code>wgpu</code> and <code>wgpu-hal</code>.
The rest of the crates are unchanged since 0.19.0.</p>
<h3>Bug Fixes</h3>
<h4>DX12</h4>
<ul>
<li>Properly register all swapchain buffers to prevent error on surface
present. By <a
href="https://github.com/dtzxporter"><code>@​dtzxporter</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5091">#5091</a></li>
<li>Check for extra null states when creating resources. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5096">#5096</a></li>
<li>Fix depth-only and stencil-only views causing crashes. By <a
href="https://github.com/teoxoy"><code>@​teoxoy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5100">#5100</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>In Surface::configure and Surface::present on Windows, fix the
current GL context not being unset when releasing the lock that guards
access to making the context current. This was causing other threads to
panic when trying to make the context current. By <a
href="https://github.com/Imberflur"><code>@​Imberflur</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5087">#5087</a>.</li>
</ul>
<h4>WebGPU</h4>
<ul>
<li>Improve error message when compiling WebGPU backend on wasm without
the <code>web_sys_unstable_apis</code> set. By <a
href="https://github.com/rukai"><code>@​rukai</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5104">#5104</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document Wayland specific behavior related to
<code>SurfaceTexture::present</code>. By <a
href="https://github.com/i509VCB"><code>@​i509VCB</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5093">#5093</a>.</li>
</ul>
<h2>v0.19.0</h2>
<p>This release includes:</p>
<ul>
<li><code>wgpu</code></li>
<li><code>wgpu-core</code></li>
<li><code>wgpu-hal</code></li>
<li><code>wgpu-types</code></li>
<li><code>wgpu-info</code></li>
<li><code>naga</code> (skipped from 0.14 to 0.19)</li>
<li><code>naga-cli</code> (skipped from 0.14 to 0.19)</li>
<li><code>d3d12</code> (skipped from 0.7 to 0.19)</li>
</ul>
<h3>Improved Multithreading through internal use of Reference
Counting</h3>
<p>Large refactoring of wgpu’s internals aiming at reducing lock
contention, and providing better performance when using wgpu on multiple
threads.</p>
<p><a href="https://gfx-rs.github.io/2023/11/24/arcanization.html">Check
the blog post!</a></p>
<p>By <a href="https://github.com/gents83"><code>@​gents83</code></a> in
<a href="https://redirect.github.com/gfx-rs/wgpu/pull/3626">#3626</a>
and thanks also to <a
href="https://github.com/jimblandy"><code>@​jimblandy</code></a>, <a
href="https://github.com/nical"><code>@​nical</code></a>, <a
href="https://github.com/Wumpf"><code>@​Wumpf</code></a>, <a
href="https://github.com/Elabajaba"><code>@​Elabajaba</code></a> &amp;
<a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a></p>
<h3>All Public Dependencies are Re-Exported</h3>
<p>All of wgpu's public dependencies are now re-exported at the top
level so that users don't need to take their own dependencies.
This includes:</p>
<ul>
<li>wgpu-core</li>
<li>wgpu-hal</li>
<li>naga</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/gfx-rs/wgpu/blob/v0.19.1/CHANGELOG.md">wgpu's
changelog</a>.</em></p>
<blockquote>
<h2>v0.19.1 (2024-01-21)</h2>
<h3>Bug Fixes</h3>
<h4>DX12</h4>
<ul>
<li>Properly register all swapchain buffers to prevent error on surface
present. By <a
href="https://github.com/dtzxporter"><code>@​dtzxporter</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5091">#5091</a></li>
<li>Check for extra null states when creating resources. By <a
href="https://github.com/nical"><code>@​nical</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5096">#5096</a></li>
<li>Fix depth-only and stencil-only views causing crashes. By <a
href="https://github.com/teoxoy"><code>@​teoxoy</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5100">#5100</a></li>
</ul>
<h4>OpenGL</h4>
<ul>
<li>In Surface::configure and Surface::present on Windows, fix the
current GL context not being unset when releasing the lock that guards
access to making the context current. This was causing other threads to
panic when trying to make the context current. By <a
href="https://github.com/Imberflur"><code>@​Imberflur</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5087">#5087</a>.</li>
</ul>
<h4>WebGPU</h4>
<ul>
<li>Improve error message when compiling WebGPU backend on wasm without
the <code>web_sys_unstable_apis</code> set. By <a
href="https://github.com/rukai"><code>@​rukai</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5104">#5104</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Document Wayland specific behavior related to
<code>SurfaceTexture::present</code>. By <a
href="https://github.com/i509VCB"><code>@​i509VCB</code></a> in <a
href="https://redirect.github.com/gfx-rs/wgpu/pull/5092">#5092</a>.</li>
</ul>
<h2>v0.19.0 (2024-01-17)</h2>
<p>This release includes:</p>
<ul>
<li><code>wgpu</code></li>
<li><code>wgpu-core</code></li>
<li><code>wgpu-hal</code></li>
<li><code>wgpu-types</code></li>
<li><code>wgpu-info</code></li>
<li><code>naga</code> (skipped from 0.14 to 0.19)</li>
<li><code>naga-cli</code> (skipped from 0.14 to 0.19)</li>
<li><code>d3d12</code> (skipped from 0.7 to 0.19)</li>
</ul>
<h3>Improved Multithreading through internal use of Reference
Counting</h3>
<p>Large refactoring of wgpu’s internals aiming at reducing lock
contention, and providing better performance when using wgpu on multiple
threads.</p>
<p><a href="https://gfx-rs.github.io/2023/11/24/arcanization.html">Check
the blog post!</a></p>
<p>By <a href="https://github.com/gents83"><code>@​gents83</code></a> in
<a href="https://redirect.github.com/gfx-rs/wgpu/pull/3626">#3626</a>
and thanks also to <a
href="https://github.com/jimblandy"><code>@​jimblandy</code></a>, <a
href="https://github.com/nical"><code>@​nical</code></a>, <a
href="https://github.com/Wumpf"><code>@​Wumpf</code></a>, <a
href="https://github.com/Elabajaba"><code>@​Elabajaba</code></a> &amp;
<a
href="https://github.com/cwfitzgerald"><code>@​cwfitzgerald</code></a></p>
<h3>All Public Dependencies are Re-Exported</h3>
<p>All of wgpu's public dependencies are now re-exported at the top
level so that users don't need to take their own dependencies.
This includes:</p>
<ul>
<li>wgpu-core</li>
<li>wgpu-hal</li>
<li>naga</li>
<li>raw_window_handle</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b8a8ff6e44"><code>b8a8ff6</code></a>
Versions</li>
<li><a
href="6e95491c9d"><code>6e95491</code></a>
Update changelog</li>
<li><a
href="ec48ee3ba6"><code>ec48ee3</code></a>
Document Wayland specifics related to SurfaceTexture::present (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5093">#5093</a>)</li>
<li><a
href="f9454d1565"><code>f9454d1</code></a>
Error on missing web_sys_unstable_apis (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5104">#5104</a>)</li>
<li><a
href="e1481b656a"><code>e1481b6</code></a>
Make sure to unset current context in wgl Surface::configure/present (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5087">#5087</a>)</li>
<li><a
href="c094e625d0"><code>c094e62</code></a>
[d3d12] use plane 1 for stencil only views (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5100">#5100</a>)</li>
<li><a
href="a0db2a2355"><code>a0db2a2</code></a>
Make sure to copy all of the buffers into the resource array for dx12.
(<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5091">#5091</a>)</li>
<li><a
href="ba74217c89"><code>ba74217</code></a>
d3d12: Null check the out ComPtr of a few creation functions (<a
href="https://redirect.github.com/gfx-rs/wgpu/issues/5096">#5096</a>)</li>
<li><a
href="484457d959"><code>484457d</code></a>
Fix wgpu-hal build</li>
<li><a
href="7eac4cec5b"><code>7eac4ce</code></a>
Fix naga release</li>
<li>Additional commits viewable in <a
href="https://github.com/gfx-rs/wgpu/compare/v0.18.0...v0.19.1">compare
view</a></li>
</ul>
</details>
<br />


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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-17 12:29:42 -05:00
..
icons replace default tauri icon 2022-04-11 23:32:00 -04:00
src backend/frontend: add a check for the VCC Runtime on windows (#437) 2024-02-10 19:57:23 -05:00
.gitignore tauri: fix .gitignore so changes in /src-tauri/bin dont reload the app 2022-06-01 21:21:36 -04:00
build.rs tauri: migrate from electron to tauri 2022-04-06 22:27:03 -04:00
Cargo.lock build(deps): bump the backend-deps group in /src-tauri with 3 updates (#438) 2024-02-17 12:29:42 -05:00
Cargo.toml build(deps): bump the backend-deps group in /src-tauri with 3 updates (#438) 2024-02-17 12:29:42 -05:00
rustfmt.toml rs: start managing the config on the rust side 2023-02-13 00:27:37 -05:00
tauri.conf.json backend/frontend: add a check for the VCC Runtime on windows (#437) 2024-02-10 19:57:23 -05:00