build(deps): bump the backend-deps group in /src-tauri with 2 updates (#574)

Bumps the backend-deps group in /src-tauri with 2 updates:
[thiserror](https://github.com/dtolnay/thiserror) and
[ts-rs](https://github.com/Aleph-Alpha/ts-rs).

Updates `thiserror` from 1.0.63 to 1.0.64
<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.64</h2>
<ul>
<li>Exclude derived impls from coverage instrumentation (<a
href="https://redirect.github.com/dtolnay/thiserror/issues/322">#322</a>,
thanks <a
href="https://github.com/oxalica"><code>@​oxalica</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="84484bc75c"><code>84484bc</code></a>
Release 1.0.64</li>
<li><a
href="023f036de4"><code>023f036</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/thiserror/issues/322">#322</a>
from oxalica/feat/mark-auto-derived</li>
<li><a
href="ae1f47e3e5"><code>ae1f47e</code></a>
Mark #[automatically_derived] for generated impls</li>
<li><a
href="ab5b5e375b"><code>ab5b5e3</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="00b3c1405e"><code>00b3c14</code></a>
Work around new dead code warning in test</li>
<li>See full diff in <a
href="https://github.com/dtolnay/thiserror/compare/1.0.63...1.0.64">compare
view</a></li>
</ul>
</details>
<br />

Updates `ts-rs` from 9.0.1 to 10.0.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Aleph-Alpha/ts-rs/releases">ts-rs's
releases</a>.</em></p>
<blockquote>
<h2>v10.0.0</h2>
<p>While v10.0.0 is a technically breaking change, <strong>we expect it
to be a drop-in replacement for almost all users</strong>.</p>
<h2>Changes to <code>HashMap&lt;K, V&gt;</code> (&amp; friends)</h2>
<p>In this release, we've changed how <code>HashMap&lt;K, V&gt;</code>
is represented in TypeScript.<br />
Before v10, ts-rs generated <code>{ [key: K]: V }</code>. This was never
technically correct, resulting in <code>tsc</code> accepting some code
which it should not have. Additionally, this resulted in issues when e.g
trying to use an <code>enum</code> as key.<br />
With v10, we now generate <code>{ [key in K]?: V }</code> instead.</p>
<h2>What's New?</h2>
<ul>
<li>Multiple types can be exported to the same file using
<code>#[ts(export_to = &quot;..&quot;)]</code></li>
<li><code>#[ts(as = &quot;..&quot;)]</code> and <code>#[ts(type =
&quot;..&quot;)]</code> now also work on enum variants</li>
<li>Support for more crates (<code>bson</code>,
<code>smol_str</code>)</li>
</ul>
<h2>Full changelog</h2>
<ul>
<li>Change <code>HashMap</code> to export mapped types by <a
href="https://github.com/gustavo-shigueo"><code>@​gustavo-shigueo</code></a>
in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/339">Aleph-Alpha/ts-rs#339</a></li>
<li>feat: add bson ObjectId impl by <a
href="https://github.com/ShaunSHamilton"><code>@​ShaunSHamilton</code></a>
in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/340">Aleph-Alpha/ts-rs#340</a></li>
<li>Fix JSDoc formatting for Rust block comments by <a
href="https://github.com/gustavo-shigueo"><code>@​gustavo-shigueo</code></a>
in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/342">Aleph-Alpha/ts-rs#342</a></li>
<li>Fix error in internally tagged enums with flattened fields by <a
href="https://github.com/gustavo-shigueo"><code>@​gustavo-shigueo</code></a>
in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/344">Aleph-Alpha/ts-rs#344</a></li>
<li>feat: Allow multiple types to set <code>#[ts(export_to =
&quot;...&quot;)]</code> to the same file by <a
href="https://github.com/escritorio-gustavo"><code>@​escritorio-gustavo</code></a>
in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/316">Aleph-Alpha/ts-rs#316</a></li>
<li>Always use forward slash on import paths by <a
href="https://github.com/gustavo-shigueo"><code>@​gustavo-shigueo</code></a>
in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/346">Aleph-Alpha/ts-rs#346</a></li>
<li>feature: support smol_str by <a
href="https://github.com/corvusrabus"><code>@​corvusrabus</code></a> in
<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/350">Aleph-Alpha/ts-rs#350</a></li>
<li>Support <code>#[ts(as = &quot;...&quot;)]</code> and <code>#[ts(type
= &quot;...&quot;)]</code> on enum variants by <a
href="https://github.com/escritorio-gustavo"><code>@​escritorio-gustavo</code></a>
in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/284">Aleph-Alpha/ts-rs#284</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/ShaunSHamilton"><code>@​ShaunSHamilton</code></a>
made their first contribution in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/340">Aleph-Alpha/ts-rs#340</a></li>
<li><a
href="https://github.com/corvusrabus"><code>@​corvusrabus</code></a>
made their first contribution in <a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/350">Aleph-Alpha/ts-rs#350</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Aleph-Alpha/ts-rs/blob/main/CHANGELOG.md">ts-rs's
changelog</a>.</em></p>
<blockquote>
<h1>master</h1>
<h3>Breaking</h3>
<ul>
<li>Change how <code>HashMap&lt;K, V&gt;</code> is represented in
TypeScript. The resulting bindings (<code>{ [key in K]?: V }</code>
instead of <code>{ [key: K]: V }</code>) are more accurate and
flexible.</li>
</ul>
<h3>Features</h3>
<ul>
<li>Allow multile types to have the same <code>#[ts(export_to =
&quot;...&quot;)]</code> attribute and be exported to the same file (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/316">#316</a>)</li>
<li>The <code>bson-uuid-impl</code> feature now supports
<code>bson::oid::ObjectId</code> as well (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/340">#340</a>)</li>
<li>Add support for types from <code>smol_str</code> behind cargo
feature <code>smol_str-impl</code> (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/350">#350</a>)</li>
<li>Support <code>#[ts(as = &quot;...&quot;)]</code> and <code>#[ts(type
= &quot;...&quot;)]</code> on enum variants (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/384">#384</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li>Properly handle block doc comments (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/342">#342</a>)</li>
<li>Fix error in internally tagged enums with flattened fields (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/344">#344</a>)</li>
<li>Always use forward slash on import paths (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/pull/346">#346</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0d92a2bb7e"><code>0d92a2b</code></a>
release v10.0</li>
<li><a
href="9763ca0195"><code>9763ca0</code></a>
Support <code>#[ts(as = &quot;...&quot;)]</code> and <code>#[ts(type =
&quot;...&quot;)]</code> on enum variants (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/issues/284">#284</a>)</li>
<li><a
href="6651d920cb"><code>6651d92</code></a>
Fix smol_str-impl feature name in lib.rs</li>
<li><a
href="fb47428d23"><code>fb47428</code></a>
Fix smol_str-impl feature name in test</li>
<li><a
href="61a6d6a1fd"><code>61a6d6a</code></a>
Fix smol_str-impl feature name</li>
<li><a
href="7577aca5d2"><code>7577aca</code></a>
feature: support smol_str (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/issues/350">#350</a>)</li>
<li><a
href="78591a2831"><code>78591a2</code></a>
Always use forward slash on import paths (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/issues/346">#346</a>)</li>
<li><a
href="5cbc7405d8"><code>5cbc740</code></a>
feat: Allow multiple types to set <code>#[ts(export_to =
&quot;...&quot;)]</code> to the same file...</li>
<li><a
href="5c3b8c9457"><code>5c3b8c9</code></a>
Fix error in internally tagged enums with flattened fields (<a
href="https://redirect.github.com/Aleph-Alpha/ts-rs/issues/344">#344</a>)</li>
<li><a
href="7ee0cbc570"><code>7ee0cbc</code></a>
Update CHANGELOG</li>
<li>Additional commits viewable in <a
href="https://github.com/Aleph-Alpha/ts-rs/compare/v9.0.1...v10.0.0">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>
This commit is contained in:
dependabot[bot] 2024-09-26 20:38:54 -04:00 committed by GitHub
parent e73a779bab
commit fe3f0c9210
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 10 deletions

17
src-tauri/Cargo.lock generated
View file

@ -5025,18 +5025,18 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.63" version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.63" version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -5351,19 +5351,20 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]] [[package]]
name = "ts-rs" name = "ts-rs"
version = "9.0.1" version = "10.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b44017f9f875786e543595076374b9ef7d13465a518dd93d6ccdbf5b432dde8c" checksum = "3a2f31991cee3dce1ca4f929a8a04fdd11fd8801aac0f2030b0fa8a0a3fef6b9"
dependencies = [ dependencies = [
"lazy_static",
"thiserror", "thiserror",
"ts-rs-macros", "ts-rs-macros",
] ]
[[package]] [[package]]
name = "ts-rs-macros" name = "ts-rs-macros"
version = "9.0.1" version = "10.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c88cc88fd23b5a04528f3a8436024f20010a16ec18eb23c164b1242f65860130" checksum = "0ea0b99e8ec44abd6f94a18f28f7934437809dd062820797c52401298116f70e"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View file

@ -34,9 +34,9 @@ serde_json = "1.0.128"
sysinfo = "0.31.3" sysinfo = "0.31.3"
tar = "0.4.41" tar = "0.4.41"
tauri = { version = "1.8.0", features = ["api-all", "devtools", "reqwest-client"] } tauri = { version = "1.8.0", features = ["api-all", "devtools", "reqwest-client"] }
thiserror = "1.0.63" thiserror = "1.0.64"
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
ts-rs = "9.0" ts-rs = "10.0"
walkdir = "2.5.0" walkdir = "2.5.0"
wgpu = "22.1.0" wgpu = "22.1.0"
zip = { version = "2.2.0", features = ["deflate-zlib-ng"] } zip = { version = "2.2.0", features = ["deflate-zlib-ng"] }