Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 22, 2025

Bumps the production-dependencies group with 9 updates in the /src-tauri directory:

Package From To
serde 1.0.219 1.0.226
serde_json 1.0.140 1.0.145
tokio 1.44.0 1.47.1
confy 0.6.1 1.0.0
tauri-plugin-window-state 2.2.1 2.2.3
tauri-plugin-dialog 2.2.0 2.2.2
tauri-plugin-shell 2.2.0 2.3.1
tauri-plugin-process 2.2.0 2.3.0
tauri-plugin-updater 2.6.0 2.9.0

Updates serde from 1.0.219 to 1.0.226

Release notes

Sourced from serde's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates serde_json from 1.0.140 to 1.0.145

Release notes

Sourced from serde_json's releases.

v1.0.145

  • Raise serde version requirement to >=1.0.220

v1.0.144

  • Switch serde dependency to serde_core (#1285)

v1.0.143

v1.0.142

v1.0.141

Commits
  • efa66e3 Release 1.0.145
  • 23679e2 Add serde version constraint
  • fc27baf Release 1.0.144
  • caef3c6 Ignore uninlined_format_args pedantic clippy lint
  • 81ba3aa Merge pull request #1285 from dtolnay/serdecore
  • d21e8ce Switch serde dependency to serde_core
  • 6beb6cd Merge pull request #1286 from dtolnay/up
  • 1dbc803 Raise required compiler to Rust 1.61
  • 0bf5d87 Enforce trybuild >= 1.0.108
  • d12e943 Update actions/checkout@v4 -> v5
  • Additional commits viewable in compare view

Updates tokio from 1.44.0 to 1.47.1

Release notes

Sourced from tokio's releases.

Tokio v1.47.1

1.47.1 (August 1st, 2025)

Fixed

  • process: fix panic from spurious pidfd wakeup (#7494)
  • sync: fix broken link of Python asyncio.Event in SetOnce docs (#7485)

#7485: tokio-rs/tokio#7485 #7494: tokio-rs/tokio#7494

Tokio v1.47.0

1.47.0 (July 25th, 2025)

This release adds poll_proceed and cooperative to the coop module for cooperative scheduling, adds SetOnce to the sync module which provides similar functionality to [std::sync::OnceLock], and adds a new method sync::Notify::notified_owned() which returns an OwnedNotified without a lifetime parameter.

Added

  • coop: add cooperative and poll_proceed (#7405)
  • sync: add SetOnce (#7418)
  • sync: add sync::Notify::notified_owned() (#7465)

Changed

  • deps: upgrade windows-sys 0.52 → 0.59 (#7117)
  • deps: update to socket2 v0.6 (#7443)
  • sync: improve AtomicWaker::wake performance (#7450)

Documented

  • metrics: fix listed feature requirements for some metrics (#7449)
  • runtime: improve safety comments of Readiness<'_> (#7415)

#7405: tokio-rs/tokio#7405 #7415: tokio-rs/tokio#7415 #7418: tokio-rs/tokio#7418 #7449: tokio-rs/tokio#7449 #7450: tokio-rs/tokio#7450 #7465: tokio-rs/tokio#7465

Tokio v1.46.1

1.46.1 (July 4th, 2025)

This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using tokio::spawn rather than Runtime::spawn. This issue only effected the spawn location in TaskMeta::spawned_at, and did not effect task locations in Tracing events.

... (truncated)

Commits

Updates confy from 0.6.1 to 1.0.0

Release notes

Sourced from confy's releases.

v1.0.0

Includes the following changes:

  • fb0af93 Bump crate version to 1.0.0 and use 2024 edition (#116)
  • e6b256b (origin/master, origin/HEAD, master) Update ron requirement from 0.9.0 to 0.10.1 (#115)
  • 6b8eb39 add basic_toml_conf feature (#112)
  • e3e16f7 Update ron requirement from 0.8.1 to 0.9.0 (#114)
  • caa6539 Updated README to include config file location on common OSes (#113)
  • 794a9f1 Fix Audit Cache (#111)
  • 0905e98 Update and Modernize CI (#110)
  • fbbcbcd chore(deps): upgrade (#107)
  • 2a357bb ci: add dependabot (#106)
  • b37128c Add missing type annotation for docs (#104)
  • a7864ee Incorporate Cargo Audit into CI (#102)
  • e5f8759 Adding fn load_or_else (#98)
Commits

Updates serde_derive from 1.0.219 to 1.0.226

Release notes

Sourced from serde_derive's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates tauri-plugin-window-state from 2.2.1 to 2.2.3

Commits
  • 0af367f refactor(single-instance): improve userdata ptr handling (#2453)
  • 1ab5f15 fix(single-instance): check if pointer is null (#2452)
  • c10d5bf chore(deps): update rust crate infer to 0.19 (v2) (#2385)
  • f6838d5 chore(deps): update dependency @​types/eslint__js to v9 (v2) (#2447)
  • 5b3a1aa chore(deps): update rust crate color-backtrace to 0.7 (#2409)
  • 3276d65 chore(deps): update rust crate windows-registry to 0.5 (#2446)
  • e0900f0 chore(deps): update eslint monorepo to v9.21.0 (#2402)
  • 4d38066 chore(deps): update unocss monorepo to v66 (#2436)
  • 3b37ce1 chore(deps): update dependency prettier to v3.5.2 (#2444)
  • 6f88129 fix(updater): Propagate request error (#2439)
  • Additional commits viewable in compare view

Updates tauri-plugin-dialog from 2.2.0 to 2.2.2

Commits
  • 3eebea2 publish new versions (#2712)
  • 6bc3e81 chore: Remove recently released crates from refresh list
  • f634e52 chore: Add changefile to refresh all packages.
  • 9841ff8 chore: add contributing guide (#2753)
  • 2e68062 chore(deps): update rust crate windows-sys to v0.60.2 (v2) (#2763)
  • 041b93f chore(deps): fix brace expansion pnpm audit (#2773)
  • a05698a chore(deps): update dependency rollup to v4.43.0 (#2759)
  • 0acca18 chore(deps): update eslint monorepo to v9.29.0 (#2766)
  • ce9888a feat(opener): Add requireLiteralLeadingDot config (#2762)
  • 106e46e feat(log): Add KeepSome rotation strategy (#677)
  • Additional commits viewable in compare view

Updates tauri-plugin-shell from 2.2.0 to 2.3.1

Release notes

Sourced from tauri-plugin-shell's releases.

dialog-js v2.3.1

[2.3.1]

Dependencies

  • Upgraded to fs-js@2.4.1
npm warn publish npm auto-corrected some errors in your package.json when publishing.  Please run "npm pkg fix" to address these errors.
npm warn publish errors corrected:
npm warn publish "repository" was changed from a string to an object
npm warn publish "repository.url" was normalized to "git+https://github.com/tauri-apps/plugins-workspace.git"
npm notice
npm notice 📦  @tauri-apps/plugin-dialog@2.3.1
npm notice Tarball Contents
npm notice 888B LICENSE.spdx
npm notice 2.9kB README.md
npm notice 5.8kB dist-js/index.cjs
npm notice 7.8kB dist-js/index.d.ts
npm notice 5.6kB dist-js/index.js
npm notice 11B dist-js/init.d.ts
npm notice 656B package.json
npm notice Tarball Details
npm notice name: @tauri-apps/plugin-dialog
npm notice version: 2.3.1
npm notice filename: tauri-apps-plugin-dialog-2.3.1.tgz
npm notice package size: 4.3 kB
npm notice unpacked size: 23.7 kB
npm notice shasum: ae29fdc9346fce2e4a54dd0a80a35a1ba86c05f0
npm notice integrity: sha512-B7jvyhycV8SI/[...]4QPonYahoYnZQ==
npm notice total files: 7
npm notice
npm notice Publishing to https://registry.npmjs.org/ with tag latest and public access
npm notice publish Signed provenance statement with source and build information from GitHub Actions
npm notice publish Provenance statement published to transparency log: https://search.sigstore.dev/?logIndex=296203362
+ @tauri-apps/plugin-dialog@2.3.1

dialog v2.3.1

[2.3.1]

Dependencies

  • Upgraded to fs-js@2.4.1

... (truncated)

Commits
  • 2371804 publish new versions (#2888)
  • 90f9b93 chore: fix cli version in deep-link package.json
  • 1c58f33 chore(deps): update dependency rollup to v4.46.4 (v2) (#2935)
  • 75617a6 fix(mobile): deeplinks (#2870)
  • 5a963a0 chore(deps): update dependency @​tauri-apps/cli to v2.8.1 (#2930)
  • 76f4e7b chore(deps): update eslint monorepo to v9.33.0 (#2903)
  • 670ac1d chore(deps): update dependency typescript-eslint to v8.40.0 (#2923)
  • ed0deef chore(deps): update dependency @​tauri-apps/api to v2.8.0 (#2929)
  • 50cebdb chore(deps): update to tauri 2.8.0 (#2925)
  • dd2ea9c chore(deps): update dependency rollup to v4.46.3 (#2920)
  • Additional commits viewable in compare view

Updates tauri-plugin-process from 2.2.0 to 2.3.0

Release notes

Sourced from tauri-plugin-process's releases.

biometric v2.3.0

[2.3.0]

Updating crates.io index
   Packaging tauri-plugin-biometric v2.3.0 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/biometric)
    Updating crates.io index
    Packaged 42 files, 190.5KiB (53.8KiB compressed)
   Uploading tauri-plugin-biometric v2.3.0 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/biometric)
    Uploaded tauri-plugin-biometric v2.3.0 to registry `crates-io`
note: waiting for `tauri-plugin-biometric v2.3.0` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-biometric v2.3.0 at registry `crates-io`

clipboard-manager-js v2.3.0

[2.3.0]

npm warn publish npm auto-corrected some errors in your package.json when publishing.  Please run "npm pkg fix" to address these errors.
npm warn publish errors corrected:
npm warn publish "repository" was changed from a string to an object
npm warn publish "repository.url" was normalized to "git+https://github.com/tauri-apps/plugins-workspace.git"
npm notice
npm notice 📦  @tauri-apps/plugin-clipboard-manager@2.3.0
npm notice Tarball Contents
npm notice 888B LICENSE.spdx
npm notice 3.1kB README.md
npm notice 3.8kB dist-js/index.cjs
npm notice 3.0kB dist-js/index.d.ts
npm notice 3.6kB dist-js/index.js
npm notice 667B package.json
npm notice Tarball Details
npm notice name: @tauri-apps/plugin-clipboard-manager
npm notice version: 2.3.0
npm notice filename: tauri-apps-plugin-clipboard-manager-2.3.0.tgz
npm notice package size: 3.4 kB
npm notice unpacked size: 15.1 kB
</tr></table> 

... (truncated)

Commits
  • adc23d6 publish new versions (#2808)
  • fc573b3 chore(deps): update rust crate tokio-tungstenite to 0.27 (#2768)
  • 901ddfb ci: enable create-pull-request sign commits (#2809)
  • f209b2f chore(deps): update tauri monorepo to v2.6.0 (v2) (#2804)
  • 19ed1bd chore(deps): update dependency prettier to v3.6.1 (#2806)
  • 5779099 publish new versions (#2780)
  • 2aec8ff feat(opener): add inAppBrowser option for iOS and Android (#2803)
  • 9799f0d fix(log): iOS simulator freezing due to early logging (#2802)
  • 8cdaacd chore(examples): update API example mobile projects
  • d46778e chore(deps): update dependency typescript-eslint to v8.35.0 (#2794)
  • Additional commits viewable in compare view

Updates tauri-plugin-updater from 2.6.0 to 2.9.0

Release notes

Sourced from tauri-plugin-updater's releases.

updater-js v2.9.0

[2.9.0]

npm warn publish npm auto-corrected some errors in your package.json when publishing.  Please run "npm pkg fix" to address these errors.
npm warn publish errors corrected:
npm warn publish "repository" was changed from a string to an object
npm warn publish "repository.url" was normalized to "git+https://github.com/tauri-apps/plugins-workspace.git"
npm notice
npm notice 📦  @tauri-apps/plugin-updater@2.9.0
npm notice Tarball Contents
npm notice 888B LICENSE.spdx
npm notice 3.5kB README.md
npm notice 2.6kB dist-js/index.cjs
npm notice 2.3kB dist-js/index.d.ts
npm notice 2.6kB dist-js/index.js
npm notice 657B package.json
npm notice Tarball Details
npm notice name: @tauri-apps/plugin-updater
npm notice version: 2.9.0
npm notice filename: tauri-apps-plugin-updater-2.9.0.tgz
npm notice package size: 3.8 kB
npm notice unpacked size: 12.6 kB
npm notice shasum: ba50b4e644fe19fa6f8465bd86d48119b0d3f41c
npm notice integrity: sha512-j++sgY8XpeDvz[...]i/r/HFmOmoxCg==
npm notice total files: 6
npm notice
npm notice Publishing to https://registry.npmjs.org/ with tag latest and public access
npm notice publish Signed provenance statement with source and build information from GitHub Actions
npm notice publish Provenance statement published to transparency log: https://search.sigstore.dev/?logIndex=249984790
+ @tauri-apps/plugin-updater@2.9.0

updater v2.9.0

[2.9.0]

Updating crates.io index
</tr></table> 

... (truncated)

Commits

Updates tauri-build from 2.0.3 to 2.4.1

Release notes

Sourced from tauri-build's releases.

tauri-build v2.4.1

Updating git repository `https://github.com/tauri-apps/schemars.git`
    Updating crates.io index
warning: Patch `schemars_derive v0.8.21 (https://github.com/tauri-apps/schemars.git?branch=feat%2Fpreserve-description-newlines#c30f9848)` was not used in the crate graph.
Check that the patched package version and available features are compatible
with the dependency requirements. If the patch has a different version from
what is locked in the Cargo.lock file, run `cargo update` to use the new
version. This may also occur with an optional dependency that is not enabled.
     Locking 1042 packages to latest compatible versions
      Adding apple-codesign v0.27.0 (available: v0.29.0)
      Adding borsh v1.3.0 (available: v1.5.7)
      Adding borsh-derive v1.3.0 (available: v1.5.7)
      Adding cargo_metadata v0.19.2 (available: v0.22.0)
      Adding colored v2.2.0 (available: v3.0.0)
      Adding ctor v0.2.9 (available: v0.5.0)
      Adding dialoguer v0.11.0 (available: v0.12.0)
      Adding elf v0.7.4 (available: v0.8.0)
      Adding goblin v0.9.3 (available: v0.10.1)
      Adding html5ever v0.29.1 (available: v0.35.0)
      Adding itertools v0.13.0 (available: v0.14.0)
      Adding json-patch v3.0.1 (available: v4.0.0)
      Adding jsonrpsee v0.24.9 (available: v0.26.0)
      Adding jsonrpsee-client-transport v0.24.9 (available: v0.26.0)
      Adding jsonrpsee-core v0.24.9 (available: v0.26.0)
      Adding jsonrpsee-ws-client v0.24.9 (available: v0.26.0)
      Adding matchit v0.8.4 (available: v0.8.6)
      Adding minisign v0.7.3 (available: v0.7.9)
      Adding object v0.36.7 (available: v0.37.3)
      Adding oxc_allocator v0.36.0 (available: v0.86.0)
      Adding oxc_ast v0.36.0 (available: v0.86.0)
      Adding oxc_parser v0.36.0 (available: v0.86.0)
      Adding oxc_span v0.36.0 (available: v0.86.0)
      Adding phf v0.11.3 (available: v0.13.1)
      Adding png v0.17.16 (available: v0.18.0)
      Adding rpm v0.16.1 (available: v0.18.0)
      Adding schemars v0.8.22 (available: v1.0.4)
      Adding tiny_http v0.11.0 (available: v0.12.0)
      Adding toml v0.8.2 (available: v0.8.23)
      Adding toml_datetime v0.6.3 (available: v0.6.11)
      Adding toml_edit v0.20.2 (available: v0.20.7)
      Adding x509-certificate v0.23.1 (available: v0.25.0)
Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 801 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (1067 crate dependencies)
Crate:     atk
</tr></table> 

... (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 <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

…ates

Bumps the production-dependencies group with 9 updates in the /src-tauri directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.226` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.145` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.0` | `1.47.1` |
| [confy](https://github.com/rust-cli/confy) | `0.6.1` | `1.0.0` |
| [tauri-plugin-window-state](https://github.com/tauri-apps/plugins-workspace) | `2.2.1` | `2.2.3` |
| [tauri-plugin-dialog](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.2` |
| [tauri-plugin-shell](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.3.1` |
| [tauri-plugin-process](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.3.0` |
| [tauri-plugin-updater](https://github.com/tauri-apps/plugins-workspace) | `2.6.0` | `2.9.0` |



Updates `serde` from 1.0.219 to 1.0.226
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.226)

Updates `serde_json` from 1.0.140 to 1.0.145
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.140...v1.0.145)

Updates `tokio` from 1.44.0 to 1.47.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.44.0...tokio-1.47.1)

Updates `confy` from 0.6.1 to 1.0.0
- [Release notes](https://github.com/rust-cli/confy/releases)
- [Commits](rust-cli/confy@v0.6.1...v1.0.0)

Updates `serde_derive` from 1.0.219 to 1.0.226
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.226)

Updates `tauri-plugin-window-state` from 2.2.1 to 2.2.3
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.1...log-v2.2.3)

Updates `tauri-plugin-dialog` from 2.2.0 to 2.2.2
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...os-v2.2.2)

Updates `tauri-plugin-shell` from 2.2.0 to 2.3.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...os-v2.3.1)

Updates `tauri-plugin-process` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.2.0...os-v2.3.0)

Updates `tauri-plugin-updater` from 2.6.0 to 2.9.0
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@log-v2.6.0...updater-v2.9.0)

Updates `tauri-build` from 2.0.3 to 2.4.1
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-build-v2.0.3...tauri-build-v2.4.1)

---
updated-dependencies:
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: confy
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: serde_derive
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tauri-plugin-window-state
  dependency-version: 2.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tauri-plugin-dialog
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tauri-plugin-shell
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tauri-plugin-process
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tauri-plugin-updater
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tauri-build
  dependency-version: 2.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 22, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 6, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 27, 2025

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

@dependabot dependabot bot closed this Oct 27, 2025
@dependabot dependabot bot deleted the dependabot/cargo/src-tauri/production-dependencies-98bc802b3d branch October 27, 2025 14:16
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.

1 participant