Skip to content

Bump the production-dependencies group across 1 directory with 10 updates#157

Closed
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/cargo/src-tauri/production-dependencies-0287f61b3f
Closed

Bump the production-dependencies group across 1 directory with 10 updates#157
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/cargo/src-tauri/production-dependencies-0287f61b3f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 27, 2025

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

Package From To
serde 1.0.219 1.0.228
serde_json 1.0.140 1.0.145
tokio 1.44.0 1.48.0
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.2.2
tauri-plugin-process 2.2.0 2.2.2
tauri-plugin-updater 2.6.0 2.8.1

Updates serde from 1.0.219 to 1.0.228

Release notes

Sourced from serde's releases.

v1.0.228

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#2995)

v1.0.227

  • Documentation improvements (#2991)

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
  • a866b33 Release 1.0.228
  • 5adc9e8 Merge pull request #2995 from dtolnay/rustdocflags
  • ab58178 Workaround for RUSTDOCFLAGS='--cfg=docsrs'
  • 415d9fc Release 1.0.227
  • 7c58427 Merge pull request #2991 from dtolnay/inlinecoredoc
  • 9d3410e Merge pull request #2992 from dtolnay/inplaceseed
  • 2fb6748 Remove InPlaceSeed public re-export
  • f8137c7 Inline serde_core into serde in docsrs mode
  • b7dbf7e Merge pull request #2990 from dtolnay/integer128
  • 7c83691 No longer macro_use integer128 module
  • 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.48.0

Release notes

Sourced from tokio's releases.

Tokio v1.48.0

1.48.0 (October 14th, 2025)

The MSRV is increased to 1.71.

Added

  • fs: add File::max_buf_size (#7594)
  • io: export Chain of AsyncReadExt::chain (#7599)
  • net: add SocketAddr::as_abstract_name (#7491)
  • net: add TcpStream::quickack and TcpStream::set_quickack (#7490)
  • net: implement AsRef<Self> for TcpStream and UnixStream (#7573)
  • task: add LocalKey::try_get (#7666)
  • task: implement Ord for task::Id (#7530)

Changed

  • deps: bump windows-sys to version 0.61 (#7645)
  • fs: preserve max_buf_size when cloning a File (#7593)
  • macros: suppress clippy::unwrap_in_result in #[tokio::main] (#7651)
  • net: remove PollEvented noise from Debug formats (#7675)
  • process: upgrade Command::spawn_with to use FnOnce (#7511)
  • sync: remove inner mutex in SetOnce (#7554)
  • sync: use UnsafeCell::get_mut in Mutex::get_mut and RwLock::get_mut (#7569)
  • time: reduce the generated code size of Timeout<T>::poll (#7535)

Fixed

  • macros: fix hygiene issue in join! and try_join! (#7638)
  • net: fix copy/paste errors in udp peek methods (#7604)
  • process: fix error when runtime is shut down on nightly-2025-10-12 (#7672)
  • runtime: use release ordering in wake_by_ref() even if already woken (#7622)
  • sync: close the broadcast::Sender in broadcast::Sender::new() (#7629)
  • sync: fix implementation of unused RwLock::try_* methods (#7587)

Unstable

  • tokio: use cargo features instead of --cfg flags for taskdump and io_uring (#7655, #7621)
  • fs: support io_uring in fs::write (#7567)
  • fs: support io_uring with File::open() (#7617)
  • fs: support io_uring with OpenOptions (#7321)
  • macros: add local runtime flavor (#7375, #7597)

Documented

  • io: clarify the zero capacity case of AsyncRead::poll_read (#7580)
  • io: fix typos in the docs of AsyncFd readiness guards (#7583)
  • net: clarify socket gets closed on drop (#7526)
  • net: clarify the behavior of UCred::pid() on Cygwin (#7611)
  • net: clarify the supported platform of set_reuseport() and reuseport() (#7628)

... (truncated)

Commits
  • 556820f chore: prepare Tokio v1.48.0 (#7677)
  • fd1659a chore: prepare tokio-macros v2.6.0 (#7676)
  • 53e8aca ci: update nightly version to 2025-10-12 (#7670)
  • 9e5527d process: fix error when runtime is shut down on nightly-2025-10-12 (#7672)
  • 25a24de net: remove PollEvented noise from Debug formats (#7675)
  • c1fa25f task: clarify the behavior of several spawn_local methods (#7669)
  • e7e02fc fs: use FileOptions inside fs::File to support uring (#7617)
  • f7a7f62 ci: remove cargo-deny Unicode-DFS-2016 license exception config (#7619)
  • d1f1499 tokio: use cargo feature for taskdump support instead of cfg (#7655)
  • ad6f618 runtime: clarify the behavior of Handle::block_on (#7665)
  • Additional commits viewable in compare view

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

Release notes

Sourced from serde_derive's releases.

v1.0.228

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#2995)

v1.0.227

  • Documentation improvements (#2991)

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
  • a866b33 Release 1.0.228
  • 5adc9e8 Merge pull request #2995 from dtolnay/rustdocflags
  • ab58178 Workaround for RUSTDOCFLAGS='--cfg=docsrs'
  • 415d9fc Release 1.0.227
  • 7c58427 Merge pull request #2991 from dtolnay/inlinecoredoc
  • 9d3410e Merge pull request #2992 from dtolnay/inplaceseed
  • 2fb6748 Remove InPlaceSeed public re-export
  • f8137c7 Inline serde_core into serde in docsrs mode
  • b7dbf7e Merge pull request #2990 from dtolnay/integer128
  • 7c83691 No longer macro_use integer128 module
  • 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.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-process 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-updater from 2.6.0 to 2.8.1

Release notes

Sourced from tauri-plugin-updater's releases.

log-js v2.7.1

[2.7.1]

  • 93426f85 Fixed an issue that caused docs.rs builds to fail. No user facing changes.
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-log@2.7.1
npm notice Tarball Contents
npm notice 888B LICENSE.spdx
npm notice 3.8kB README.md
npm notice 7.0kB dist-js/index.cjs
npm notice 3.0kB dist-js/index.d.ts
npm notice 6.7kB dist-js/index.js
npm notice 714B package.json
npm notice Tarball Details
npm notice name: @tauri-apps/plugin-log
npm notice version: 2.7.1
npm notice filename: tauri-apps-plugin-log-2.7.1.tgz
npm notice package size: 5.0 kB
npm notice unpacked size: 22.1 kB
npm notice shasum: 2bade235293e0548816d10c29456a457abe59f51
npm notice integrity: sha512-jdb+o0wxQc8Pj[...]3aBszl8ijhR+A==
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=644608338
+ @tauri-apps/plugin-log@2.7.1

log v2.7.1

[2.7.1]

  • 93426f85 Fixed an issue that caused docs.rs builds to fail. No user facing changes.
Updating crates.io index
</tr></table> 

... (truncated)

Commits
  • ff19aff chore(deps): update dependency typescript-eslint to v8.34.0 (#2755)
  • f501bc2 chore(deps): update dependency typescript-eslint to v8.33.1 (#2735)
  • 87afa23 feat(updater): add allowDowngrades option (#2726)
  • d401907 chore(deps): update eslint monorepo to v9.28.0 (#2730)
  • 909bc1f chore(deps): update dependency typescript-eslint to v8.33.0 (#2722)
  • 9bc4b22 chore(deps): update dependency rollup to v4.41.1 (#2715)
  • b9dc03d docs(geolocation): fix android feature name
  • cd8fbf8 chore(deps): update rust crate zip to v4 (#2711)
  • 764e8f7 feat(autostart): add app name configuration for auto start entry (#2707)
  • 85635a2 publish new versions (#2643)
  • 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 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.228` |
| [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.48.0` |
| [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.2.2` |
| [tauri-plugin-process](https://github.com/tauri-apps/plugins-workspace) | `2.2.0` | `2.2.2` |
| [tauri-plugin-updater](https://github.com/tauri-apps/plugins-workspace) | `2.6.0` | `2.8.1` |



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

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.48.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.44.0...tokio-1.48.0)

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.228
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.228)

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.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-process` 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-updater` from 2.6.0 to 2.8.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@log-v2.6.0...updater-v2.8.1)

---
updated-dependencies:
- dependency-name: serde
  dependency-version: 1.0.228
  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.48.0
  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.228
  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.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tauri-plugin-process
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tauri-plugin-updater
  dependency-version: 2.8.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 Oct 27, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 20, 2026

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

@dependabot dependabot Bot closed this Apr 20, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/src-tauri/production-dependencies-0287f61b3f branch April 20, 2026 16:54
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.

0 participants