From 3f6a484980768c684963c2a1ed748002b61a6b9b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 28 Oct 2024 21:36:14 -0400
Subject: [PATCH] build(deps): bump the backend-deps group across 1 directory
with 5 updates (#609)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps the backend-deps group with 5 updates in the /src-tauri directory:
| Package | From | To |
| --- | --- | --- |
| [fern](https://github.com/daboross/fern) | `0.6.2` | `0.7.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.8` |
`0.12.9` |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.214` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` |
`1.0.65` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.0` |
Updates `fern` from 0.6.2 to 0.7.0
Changelog
Sourced from fern's
changelog.
0.7.0 (2024-10-20)
- Upgrade
colored
to version 2. This is a breaking change
due to
colored
being exposed in the public API of
fern
. (thanks [@faern
] for
doing the boilerplate here!)
- Remove most of the unsoundness warning, and update it to reflect
fern 0.7.0
fixing the issue.
Commits
120231d
Bump version to 0.7.0
894a70c
Update version numbers in source to 0.7.0.
cfc8e8f
Merge pull request #140
from daboross/dross/upgrade-colored
f82c111
Update CHANGELOG.md
b78b76e
Add new security warning for the fixed soundness issue.
fdd525c
Revert "Add documentation warning about usage of
'colored'"
ee161a7
Upgrade colored dependency to ^2
8236409
Merge pull request #139
from daboross/dross/new-msrv
1ecc85a
Satisfy new clippy lints.
8263fe0
Update secondary MSRV test versions for optional dependencies.
- Additional commits viewable in compare
view
Updates `reqwest` from 0.12.8 to 0.12.9
Release notes
Sourced from reqwest's
releases.
v0.12.9
What's Changed
New Contributors
Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.8...v0.12.9
Changelog
Sourced from reqwest's
changelog.
v0.12.9
- Add
tls::CertificateRevocationLists
support.
- Add crate features to enable webpki roots without selecting a rustls
provider.
- Fix
connection_verbose()
to output read logs.
- Fix
multipart::Part::file()
to automatically include
content-length.
- Fix proxy to internally no longer cache system proxy settings.
Commits
Updates `serde` from 1.0.210 to 1.0.214
Release notes
Sourced from serde's
releases.
v1.0.214
- Implement IntoDeserializer for all Deserializers in serde::de::value
module (#2568,
thanks
@Mingun
)
v1.0.213
- Fix support for macro-generated
with
attributes inside
a newtype struct (#2847)
v1.0.212
- Fix hygiene of macro-generated local variable accesses in
serde(with) wrappers (#2845)
v1.0.211
- Improve error reporting about mismatched signature in
with
and default
attributes (#2558,
thanks @Mingun
)
- Show variant aliases in error message when variant deserialization
fails (#2566,
thanks
@Mingun
)
- Improve binary size of untagged enum and internally tagged enum
deserialization by about 12% (#2821)
Commits
4180621
Release 1.0.214
210373b
Merge pull request #2568
from Mingun/into_deserializer-for-deserializers
9cda015
Implement IntoDeserializer for all Deserializers in serde::de::value
module
58a8d22
Release 1.0.213
ef0ed22
Merge pull request #2847
from dtolnay/newtypewith
79925ac
Ignore dead_code warning in regression test
b60e409
Hygiene for macro-generated newtype struct deserialization with 'with'
attr
fdc36e5
Add regression test for issue 2846
49e11ce
Ignore trivially_copy_pass_by_ref pedantic clippy lint in test
7ae1b5f
Release 1.0.212
- Additional commits viewable in compare
view
Updates `thiserror` from 1.0.64 to 1.0.65
Release notes
Sourced from thiserror's
releases.
1.0.65
- Ensure OUT_DIR is left with deterministic contents after build
script execution (#325)
Commits
Updates `tokio` from 1.40.0 to 1.41.0
Release notes
Sourced from tokio's
releases.
Tokio v1.41.0
1.41.0 (Oct 22th, 2024)
Added
- metrics: stabilize
global_queue_depth
(#6854,
#6918)
- net: add conversions for unix
SocketAddr
(#6868)
- sync: add
watch::Sender::sender_count
(#6836)
- sync: add
mpsc::Receiver::blocking_recv_many
(#6867)
- task: stabilize
Id
apis (#6793,
#6891)
Added (unstable)
- metrics: add H2 Histogram option to improve histogram granularity
(#6897)
- metrics: rename some histogram apis (#6924)
- runtime: add
LocalRuntime
(#6808)
Changed
- runtime: box futures larger than 16k on release mode (#6826)
- sync: add
#[must_use]
to Notified
(#6828)
- sync: make
watch
cooperative (#6846)
- sync: make
broadcast::Receiver
cooperative (#6870)
- task: add task size to tracing instrumentation (#6881)
- wasm: enable
cfg_fs
for wasi
target (#6822)
Fixed
- net: fix regression of abstract socket path in unix socket (#6838)
Documented
- io: recommend
OwnedFd
with AsyncFd
(#6821)
- io: document cancel safety of
AsyncFd
methods (#6890)
- macros: render more comprehensible documentation for
join
and try_join
(#6814,
#6841)
- net: fix swapped examples for
TcpSocket::set_nodelay
and TcpSocket::nodelay
(#6840)
- sync: document runtime compatibility (#6833)
#6793:
tokio-rs/tokio#6793
#6808:
tokio-rs/tokio#6808
#6810:
tokio-rs/tokio#6810
#6814:
tokio-rs/tokio#6814
#6821:
tokio-rs/tokio#6821
#6822:
tokio-rs/tokio#6822
#6826:
tokio-rs/tokio#6826
#6828:
tokio-rs/tokio#6828
#6833:
tokio-rs/tokio#6833
#6836:
tokio-rs/tokio#6836
#6838:
tokio-rs/tokio#6838
#6840:
tokio-rs/tokio#6840
... (truncated)
Commits
01e04da
chore: prepare Tokio v1.41.0 (#6917)
92ccade
runtime: fix stability feature flags for docs (#6909)
fbfeb9a
metrics: rename *_poll_count_*
to
*_poll_time_*
(#6924)
da745ff
metrics: add H2 Histogram option to improve histogram granularity (#6897)
ce1c74f
metrics: fix deadlock in injection_queue_depth_multi_thread test (#6916)
28c9a14
metrics: rename injection_queue_depth
to
global_queue_depth
(#6918)
32e0b43
ci: freeze FreeBSD and wasm-unknown-unknown on rustc 1.81 (#6911)
1656d8e
sync: add mpsc::Receiver::blocking_recv_many
(#6867)
c9e998e
ci: print the correct sort order of the dictionary on failure (#6905)
512e9de
rt: add LocalRuntime (#6808)
- Additional commits viewable in compare
view
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)
---
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
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src-tauri/Cargo.lock | 122 +++++++++++++++++++------------------------
src-tauri/Cargo.toml | 4 +-
2 files changed, 57 insertions(+), 69 deletions(-)
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
index 3fa95ff7..e63062bf 100644
--- a/src-tauri/Cargo.lock
+++ b/src-tauri/Cargo.lock
@@ -212,7 +212,7 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -247,7 +247,7 @@ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -649,13 +649,12 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
[[package]]
name = "colored"
-version = "1.9.4"
+version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a5f741c91823341bebf717d4c71bda820630ce065443b58bd1b7451af008355"
+checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
dependencies = [
- "is-terminal",
"lazy_static",
- "winapi",
+ "windows-sys 0.48.0",
]
[[package]]
@@ -843,7 +842,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
dependencies = [
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -853,7 +852,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f"
dependencies = [
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -877,7 +876,7 @@ dependencies = [
"proc-macro2",
"quote",
"strsim",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -888,7 +887,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
dependencies = [
"darling_core",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -915,7 +914,7 @@ checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -926,7 +925,7 @@ checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -939,7 +938,7 @@ dependencies = [
"proc-macro2",
"quote",
"rustc_version",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -1018,7 +1017,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -1116,7 +1115,7 @@ checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -1179,9 +1178,9 @@ dependencies = [
[[package]]
name = "fern"
-version = "0.6.2"
+version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee"
+checksum = "69ff9c9d5fb3e6da8ac2f77ab76fe7e8087d512ce095200f8f29ac5b656cf6dc"
dependencies = [
"chrono",
"colored",
@@ -1269,7 +1268,7 @@ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -1362,7 +1361,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -2159,17 +2158,6 @@ version = "2.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
-[[package]]
-name = "is-terminal"
-version = "0.4.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
-dependencies = [
- "hermit-abi 0.4.0",
- "libc",
- "windows-sys 0.52.0",
-]
-
[[package]]
name = "itertools"
version = "0.11.0"
@@ -2878,7 +2866,7 @@ dependencies = [
"glob",
"log",
"native-dialog",
- "reqwest 0.12.8",
+ "reqwest 0.12.9",
"rev_buf_reader",
"rustc-serialize",
"semver",
@@ -2922,7 +2910,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -3176,7 +3164,7 @@ dependencies = [
"phf_shared 0.11.2",
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -3606,9 +3594,9 @@ dependencies = [
[[package]]
name = "reqwest"
-version = "0.12.8"
+version = "0.12.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b"
+checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
dependencies = [
"base64 0.22.1",
"bytes",
@@ -3873,22 +3861,22 @@ dependencies = [
[[package]]
name = "serde"
-version = "1.0.210"
+version = "1.0.214"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
+checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.210"
+version = "1.0.214"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
+checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -3912,7 +3900,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -3963,7 +3951,7 @@ dependencies = [
"darling",
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -3985,7 +3973,7 @@ checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -4197,9 +4185,9 @@ dependencies = [
[[package]]
name = "syn"
-version = "2.0.80"
+version = "2.0.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6e185e337f816bc8da115b8afcb3324006ccc82eeaddf35113888d3bd8e44ac"
+checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
dependencies = [
"proc-macro2",
"quote",
@@ -4367,7 +4355,7 @@ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -4641,22 +4629,22 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
[[package]]
name = "thiserror"
-version = "1.0.64"
+version = "1.0.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
+checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.64"
+version = "1.0.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
+checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -4728,9 +4716,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
-version = "1.40.0"
+version = "1.41.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
+checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
dependencies = [
"backtrace",
"bytes",
@@ -4752,7 +4740,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -4882,7 +4870,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -4963,7 +4951,7 @@ checksum = "0ea0b99e8ec44abd6f94a18f28f7934437809dd062820797c52401298116f70e"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
"termcolor",
]
@@ -5157,7 +5145,7 @@ dependencies = [
"once_cell",
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
"wasm-bindgen-shared",
]
@@ -5191,7 +5179,7 @@ checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
@@ -5559,7 +5547,7 @@ checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -5570,7 +5558,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -5581,7 +5569,7 @@ checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -5592,7 +5580,7 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -6122,7 +6110,7 @@ dependencies = [
"proc-macro-crate 3.2.0",
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
"zvariant_utils",
]
@@ -6155,7 +6143,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -6175,7 +6163,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
[[package]]
@@ -6282,7 +6270,7 @@ dependencies = [
"proc-macro-crate 3.2.0",
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
"zvariant_utils",
]
@@ -6294,5 +6282,5 @@ checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.80",
+ "syn 2.0.85",
]
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index 95e675e2..d4a65550 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -20,7 +20,7 @@ chrono = "0.4.38"
dir-diff = "0.3.3"
directories = "5.0.1"
rustc-serialize = "0.3"
-fern = { version = "0.6.1", features = ["date-based", "colored"] }
+fern = { version = "0.7.0", features = ["date-based", "colored"] }
flate2 = "1.0.34"
fs_extra = "1.3.0"
futures-util = "0.3.31"
@@ -34,7 +34,7 @@ serde_json = "1.0.128"
sysinfo = "0.32.0"
tar = "0.4.42"
tauri = { version = "1.8.0", features = ["api-all", "devtools", "reqwest-client"] }
-thiserror = "1.0.64"
+thiserror = "1.0.65"
tokio = { version = "1", features = ["full"] }
ts-rs = "10.0"
walkdir = "2.5.0"