Skip to content

chore(deps): bump the cargo group across 2 directories with 10 updates#40

Open
dependabot[bot] wants to merge 1 commit intoforapifrom
dependabot/cargo/cargo-4fe186f05d
Open

chore(deps): bump the cargo group across 2 directories with 10 updates#40
dependabot[bot] wants to merge 1 commit intoforapifrom
dependabot/cargo/cargo-4fe186f05d

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Aug 26, 2025

Bumps the cargo group with 7 updates in the / directory:

Package From To
whoami 1.2.1 1.5.0
sqlx 0.6.0 0.6.3
tungstenite 0.17.2 0.26.2
bumpalo 3.9.1 3.19.0
mio 1.0.3 1.0.4
openssl 0.10.68 0.10.73
webpki 0.22.0 0.22.4

Bumps the cargo group with 4 updates in the /ui directory: bumpalo, mio, tokio and tauri.

Updates whoami from 1.2.1 to 1.5.0

Changelog

Sourced from whoami's changelog.

[1.5.0] - 2024-03-03

Added

  • WASI support
  • Redox support
  • Fallible functions
    • whoami::fallible::devicename()
    • whoami::fallible::devicename_os()
    • whoami::fallible::distro()
    • whoami::fallible::hostname() - notably doesn't normalize to lowercase
    • whoami::fallible::realname()
    • whoami::fallible::realname_os()
    • whoami::fallible::username()
    • whoami::fallible::username_os()
  • whoami::Language
  • whoami::Country
  • whoami::langs()
  • whoami::fallible::account()
  • whoami::fallible::account_os()
  • whoami::DesktopEnv::is_gtk()
  • whoami::DesktopEnv::is_kde()

Removed

  • Generated device names that infer casing based on the hostname when the device name is not available - now returns the hostname unchanged
  • Partial (potentially unsound) support for Android, iOS, watchOS, tvOS, Fuchsia, Haiku, Solaris, and a few others. These targets now use the "fake" implementation.

Changed

  • Deprecated whoami::distro_os()
  • Deprecated whoami::hostname()
  • Deprecated whoami::hostname_os()
  • Deprecated whoami::lang()
  • illumos and Redox are no longer untested targets
  • Documented that illumos and Redox have a higher MSRV (Rust 1.65) than other targets
  • Display implementation on Platform::Illumos now displays in lowercase: illumos

Fixed

  • Removed some unnecessary allocations
  • Rare and nearly impossible cases of undefined behavior
  • Better handling of UTF-8 non-conformant strings
  • Multiple instances of undefined behavior on illumos

... (truncated)

Commits

Updates sqlx from 0.6.0 to 0.6.3

Changelog

Sourced from sqlx's changelog.

0.6.3 - 2023-03-21

This is a hotfix to address the breakage caused by transitive dependencies upgrading to syn = "2".

We set default-features = false for our dependency on syn = "1" to be good crates.io citizens, but failed to enable the features we actually used, which went undetected because we transitively depended on syn with the default features enabled through other crates, and so they were also on for us because features are additive.

When those other dependencies upgraded to syn = "2" it was no longer enabling those features for us, and so compilation broke for projects that don't also depend on syn = "1", transitively or otherwise.

There is no PR for this fix as there was no longer a dedicated development branch for 0.6, but discussion can be found in [issue #2418].

As of this release, the 0.7 release is in alpha and so development is no longer occurring against 0.6. This fix will be forward-ported to 0.7.

[issue #2418]: launchbadge/sqlx#2418

0.6.2 - 2022-09-14

[25 pull requests][0.6.2-prs] were merged this release cycle.

Added

  • [#1081]: Add try_from attribute for FromRow derive [[@​zzhengzhuo]]
    • Exemplifies "out of sight, out of mind." It's surprisingly easy to forget about PRs when they get pushed onto the second page. We'll be sure to clean out the backlog for 0.7.0.
  • [#2014]: Support additional SQLCipher options in SQLite driver. [[@​szymek156]]
  • [#2052]: Add issue templates [[@​abonander]]
  • [#2053]: Add documentation for IpAddr support in Postgres [[@​rakshith-ravi]]
  • [#2062]: Add extension support for SQLite [[@​bradfier]]
  • [#2063]: customizable db locking during migration [[@​fuzzbuck]]

Changed

Fixed

... (truncated)

Commits
  • bb064e3 chore: CHANGELOG entry for 0.6.3
  • c6f8a41 fix: non-binding let in SQLite driver
  • 7d4333e fix(ci): backport change enabling CI on *-dev
  • 2ab9156 0.6.3 hotfix: don't rely on transitive deps enabling syn features
  • ef17af3 fix: cannot publish with wildcard dep
  • b6cddcd prepare 0.6.2 release (#2092)
  • 8fca760 Sqlite explain plan log efficiency (#2091)
  • f38c739 fix: make begin,commit,rollback cancel-safe in sqlite (#2054) (#2057)
  • 09717e1 fix: Remove default chrono dep on time for sqlx-cli (#2089)
  • 5e56da8 fix: ensure migration progress is not lost for PG, mysql and sqlite (#1991)
  • Additional commits viewable in compare view

Updates tungstenite from 0.17.2 to 0.26.2

Changelog

Sourced from tungstenite's changelog.

0.26.2

  • Add WebSocketConfig::read_buffer_size docs explaining performance/memory tradeoff.
  • Implement traits and add helper methods for the UTF8 payloads making them comparable and more ergonomic.

0.26.1

  • Fix/revert unsoundness that could lead to UB with dodgy Read stream implementations.

0.26.0

  • Simplify Message to use Bytes payload directly with simpler Utf8Bytes for text.
  • Change CloseFrame to use Utf8Bytes for reason.
  • Re-export Bytes.

0.25.0

  • New Payload type for Message that allows sending messages with a payload that can be cheaply cloned (Bytes). Long standing issue solved!
  • Add WebSocketConfig::read_buffer_size default 128 KiB. This improves high load read performance. Note: This default increases memory usage compared to previous versions particularly for users expecting a high number of connections. Configure 4-8 KiB to get a similar memory usage to 0.24.
  • Make WebSocketConfig non-exhaustive & add builder style construction fns.
  • Remove deprecated WebSocketConfig::max_send_queue.
  • Trim spaces on Sec-WebSocket-Protocol header.
  • Eliminate data copies when reading complete messages & optimise read buffer. Improves performance.
  • Update thiserror to 2.

0.24.0

  • Raised MSRV to 1.63 to match tokio-tungstenite.
  • Connecting to WSS URL without TLS features specified results in a better error.
  • Handshake will now flush after completion to be safe (works better with buffered streams).

0.23.0

  • Disable default features for rustls giving the user more flexibility.

0.22.0

  • Make url optional.
  • Add a builder for convenient headers and subprotocols construction.
  • Update rustls dependency.

0.21.0

  • Fix read-predominant auto pong responses not flushing when hitting WouldBlock errors.
  • Improve FrameHeader::format write correctness.
  • Update rustls to 0.22.
  • Update webpki-roots to 0.26.
  • Update rustls-native-certs to 0.7.
  • Update http to 1.0.0.

0.20.1

... (truncated)

Commits
  • bb7a58a Bump version
  • 4eb26c5 Implement PartialOrd and Ord for Utf8Bytes
  • 34e417b Derive Hash for Utf8Bytes
  • d1229ec Implement Borrow\<str>, AsRef\<[u8]>, AsRef\<str> and AsRef\<Bytes> for `...
  • 8cfd027 Add WebSocketConfig::read_buffer_size docs explaining performance/memory trad...
  • 5e67ba6 Update rand requirement from 0.8.0 to 0.9.0 (#481)
  • c167787 Remove byteorder, use bytes::Buf::get_uint instead (#477)
  • 7632848 feat: add unsafe Utf8Bytes::from_bytes_unchecked (#476)
  • b7a7817 Keep the set-len refactor but use safe resize
  • f05398b Revert "Revert "Use set-len when reading into buffer""
  • Additional commits viewable in compare view

Updates bumpalo from 3.9.1 to 3.19.0

Changelog

Sourced from bumpalo's changelog.

3.19.0

Released 2025-06-24.

Added

  • Added bumpalo::collections::Vec::retain_mut, similar to std::vec::Vec::retain_mut.

3.18.1

Released 2025-06-05.

Removed

  • Removed the allocator-api2 version bump from 3.18.0, as it was not actually semver compatible.

3.18.0 (yanked)

Released 2025-06-05.

Added

  • Added support for enforcing a minimum alignment on all allocations inside a Bump arena, which can provide speed ups when allocating objects whose alignment is less than or equal to that minimum.
  • Added serde serialization support for bumpalo::collections::String.
  • Added some missing fallible slice allocation function variants.

Changed

  • Replaced extend_from_slice implementation with a formally-verified version that is also faster and more-optimizable for LLVM.
  • Updated allocator-api2 support to version 0.3.*.

Fixed

  • Fixed a bug where the allocated_bytes metrics helper was accidentally including the size of bumpalo's footer, rather than just reporting the user-allocated bytes.

3.17.0

... (truncated)

Commits

Updates idna from 0.2.3 to 1.1.0

Release notes

Sourced from idna's releases.

idna v1.0.3

What's Changed

New Contributors

Full Changelog: servo/rust-url@v2.5.2...idna-v1.0.3

idna v1.0.1

What's Changed

Full Changelog: servo/rust-url@v2.5.1...idna-v1.0.1

Commits

Updates mio from 1.0.3 to 1.0.4

Changelog

Sourced from mio's changelog.

1.0.4

Commits

Updates openssl from 0.10.68 to 0.10.73

Release notes

Sourced from openssl's releases.

openssl-v0.10.73

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.72...openssl-v0.10.73

openssl-v0.10.72

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.71...openssl-v0.10.72

openssl-v0.10.71

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.70...openssl-v0.10.71

openssl v0.10.70

What's Changed

... (truncated)

Commits

Updates tokio from 1.43.0 to 1.47.1

Release notes

Sourced from tokio's releases.

Tokio v1.29.1

Fixed

  • rt: fix nesting two block_in_place with a block_on between (#5837)

#5837: tokio-rs/tokio#5837

Tokio v1.29.0

Technically a breaking change, the Send implementation is removed from runtime::EnterGuard. This change fixes a bug and should not impact most users.

Breaking

  • rt: EnterGuard should not be Send (#5766)

Fixed

  • fs: reduce blocking ops in fs::read_dir (#5653)
  • rt: fix possible starvation (#5686, #5712)
  • rt: fix stacked borrows issue in JoinSet (#5693)
  • rt: panic if EnterGuard dropped incorrect order (#5772)
  • time: do not overflow to signal value (#5710)
  • fs: wait for in-flight ops before cloning File (#5803)

Changed

  • rt: reduce time to poll tasks scheduled from outside the runtime (#5705, #5720)

Added

  • net: add uds doc alias for unix sockets (#5659)
  • rt: add metric for number of tasks (#5628)
  • sync: implement more traits for channel errors (#5666)
  • net: add nodelay methods on TcpSocket (#5672)
  • sync: add broadcast::Receiver::blocking_recv (#5690)
  • process: add raw_arg method to Command (#5704)
  • io: support PRIORITY epoll events (#5566)
  • task: add JoinSet::poll_join_next (#5721)
  • net: add support for Redox OS (#5790)

Unstable

  • rt: add the ability to dump task backtraces (#5608, #5676, #5708, #5717)
  • rt: instrument task poll times with a histogram (#5685)

#5766: tokio-rs/tokio#5766 #5653: tokio-rs/tokio#5653 #5686: tokio-rs/tokio#5686 #5712: tokio-rs/tokio#5712

... (truncated)

Commits
  • 1b1b9dc chore: prepare Tokio v1.29.1 release
  • 012c848 rt: fix nesting block_in_place with block_on (#5837)
  • 48c5576 chore: prepare Tokio v1.29.0 release (#5826)
  • 657fd88 task: add guarantee about when a spawned task may be polled (#5816)
  • 6b076a2 fs: wait for in-flight ops before cloning File (#5803)
  • 910a1e2 io: fix futures_io::AsyncSeek implementaion for Compat (#5783)
  • 6d25a00 fs: update cfg attr in fs::read_dir (#5806)
  • 78bf8a9 sync: replace Poll::Ready with Ready (#5815)
  • b8af5aa task: add spawn_blocking methods to JoinMap (#5797)
  • 2e62374 rt: pad the task struct to avoid false sharing (#5809)
  • Additional commits viewable in compare view

Updates webpki from 0.22.0 to 0.22.4

Commits

Updates bumpalo from 3.12.0 to 3.19.0

Changelog

Sourced from bumpalo's changelog.

3.19.0

Released 2025-06-24.

Added

  • Added bumpalo::collections::Vec::retain_mut, similar to std::vec::Vec::retain_mut.

3.18.1

Released 2025-06-05.

Removed

  • Removed the allocator-api2 version bump from 3.18.0, as it was not actually semver compatible.

3.18.0 (yanked)

Released 2025-06-05.

Added

  • Added support for enforcing a minimum alignment on all allocations inside a Bump arena, which can provide speed ups when allocating objects whose alignment is less than or equal to that minimum.
  • Added serde serialization support for bumpalo::collections::String.
  • Added some missing fallible slice allocation function variants.

Changed

  • Replaced extend_from_slice implementation with a formally-verified version that is also faster and more-optimizable for LLVM.
  • Updated allocator-api2 support to version 0.3.*.

Fixed

  • Fixed a bug where the allocated_bytes metrics helper was accidentally including the size of bumpalo's footer, rather than just reporting the user-allocated bytes.

3.17.0

... (truncated)

Commits

Updates mio from 0.8.5 to 0.8.11

Changelog

Sourced from mio's changelog.

1.0.4

Commits

Updates tokio from 1.25.0 to 1.29.1

Release notes

Sourced from tokio's releases.

Tokio v1.29.1

Fixed

  • rt: fix nesting two block_in_place with a block_on between (#5837)

#5837: tokio-rs/tokio#5837

Tokio v1.29.0

Technically a breaking change, the Send implementation is removed from runtime::EnterGuard. This change fixes a bug and should not impact most users.

Breaking

  • rt: EnterGuard should not be Send (#5766)

Fixed

  • fs: reduce blocking ops in fs::read_dir (#5653)
  • rt: fix possible starvation (#5686, #5712)
  • rt: fix stacked borrows issue in JoinSet (#5693)
  • rt: panic if EnterGuard dropped incorrect order (#5772)
  • time: do not overflow to signal value (#5710)
  • fs: wait for in-flight ops before cloning File (#5803)

Changed

  • rt: reduce time to poll tasks scheduled from outside the runtime (#5705, #5720)

Added

  • net: add uds doc alias for unix sockets (#5659)
  • rt: add metric for number of tasks (#5628)
  • sync: implement more traits for channel errors (#5666)
  • net: add nodelay methods on TcpSocket (#5672)
  • sync: add broadcast::Receiver::blocking_recv (#5690)
  • process: add raw_arg method to Command (#5704)
  • io: support PRIORITY epoll events (#5566)
  • task: add JoinSet::poll_join_next (#5721)
  • net: add support for Redox OS (#5790)

Unstable

  • rt: add the ability to dump task backtraces (#5608, #5676, #5708, #5717)
  • rt: instrument task poll times with a histogram (#5685)

#5766: tokio-rs/tokio#5766 #5653: tokio-rs/tokio#5653 #5686: tokio-rs/tokio#5686 #5712: tokio-rs/tokio#5712

... (truncated)

Commits
  • 1b1b9dc chore: prepare Tokio v1.29.1 release
  • 012c848 rt: fix nesting block_in_place with block_on (#5837)
  • 48c5576 chore: prepare Tokio v1.29.0 release (#5826)
  • 657fd88 task: add guarantee about when a spawned task may be polled (#5816)
  • 6b076a2 fs: wait for in-flight ops before cloning File (#5803)
  • 910a1e2 io: fix futures_io::AsyncSeek implementaion for Compat (#5783)
  • 6d25a00 fs: update cfg attr in fs::read_dir (#5806)
  • 78bf8a9 sync: replace Poll::Ready with Ready (#5815)
  • b8af5aa task: add spawn_blocking methods to JoinMap (#5797)
  • 2e62374 rt: pad the task struct to avoid false sharing (#5809)
  • Additional commits viewable in compare view

Updates tauri from 1.2.4 to 1.2.5

Commits
  • 53a34a8 chore: trigger release
  • 961cec9 chore: remove println
  • 2227abb fix(core): IPC remote domain check bypassed by isolation iframe usage (#6691)
  • 9c0593c feat(core): block remote URLs from accessing the IPC
  • ca45fdb update publish-cli-js.yml
  • 309aad7 fix(ci): dispatcher for cli.js/cli.rs publish workflow
  • 318802e chore(ci): remove package filter
  • See full diff 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the cargo group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [whoami](https://github.com/ardaku/whoami) | `1.2.1` | `1.5.0` |
| [sqlx](https://github.com/launchbadge/sqlx) | `0.6.0` | `0.6.3` |
| [tungstenite](https://github.com/snapview/tungstenite-rs) | `0.17.2` | `0.26.2` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.9.1` | `3.19.0` |
| [mio](https://github.com/tokio-rs/mio) | `1.0.3` | `1.0.4` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.68` | `0.10.73` |
| [webpki](https://github.com/briansmith/webpki) | `0.22.0` | `0.22.4` |

Bumps the cargo group with 4 updates in the /ui directory: [bumpalo](https://github.com/fitzgen/bumpalo), [mio](https://github.com/tokio-rs/mio), [tokio](https://github.com/tokio-rs/tokio) and [tauri](https://github.com/tauri-apps/tauri).


Updates `whoami` from 1.2.1 to 1.5.0
- [Release notes](https://github.com/ardaku/whoami/releases)
- [Changelog](https://github.com/ardaku/whoami/blob/v1.5.0/CHANGELOG.md)
- [Commits](ardaku/whoami@v1.2.1...v1.5.0)

Updates `sqlx` from 0.6.0 to 0.6.3
- [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md)
- [Commits](launchbadge/sqlx@v0.6.0...v0.6.3)

Updates `tungstenite` from 0.17.2 to 0.26.2
- [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md)
- [Commits](snapview/tungstenite-rs@v0.17.2...v0.26.2)

Updates `bumpalo` from 3.9.1 to 3.19.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fitzgen/bumpalo/commits)

Updates `idna` from 0.2.3 to 1.1.0
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/commits)

Updates `mio` from 1.0.3 to 1.0.4
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/mio/commits)

Updates `openssl` from 0.10.68 to 0.10.73
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.68...openssl-v0.10.73)

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

Updates `webpki` from 0.22.0 to 0.22.4
- [Commits](https://github.com/briansmith/webpki/commits)

Updates `bumpalo` from 3.12.0 to 3.19.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fitzgen/bumpalo/commits)

Updates `mio` from 0.8.5 to 0.8.11
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/mio/commits)

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

Updates `tauri` from 1.2.4 to 1.2.5
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-v1.2.4...tauri-v1.2.5)

---
updated-dependencies:
- dependency-name: whoami
  dependency-version: 1.5.0
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: sqlx
  dependency-version: 0.6.3
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: tungstenite
  dependency-version: 0.26.2
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: bumpalo
  dependency-version: 3.19.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: idna
  dependency-version: 1.1.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: mio
  dependency-version: 1.0.4
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: openssl
  dependency-version: 0.10.73
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: webpki
  dependency-version: 0.22.4
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: bumpalo
  dependency-version: 3.19.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: mio
  dependency-version: 0.8.11
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.29.1
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tauri
  dependency-version: 1.2.5
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
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