Skip to content

chore(deps): bump the cargo group across 1 directory with 12 updates - #3

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-0bf2fd03da
Open

chore(deps): bump the cargo group across 1 directory with 12 updates#3
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-0bf2fd03da

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 22, 2024

Copy link
Copy Markdown

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

Package From To
tokio 1.20.1 1.26.0
rustls 0.21.3 0.21.5
openssl 0.10.41 0.10.80
remove_dir_all 0.7.0 0.8.0
rsa 0.9.2 0.9.10
whoami 1.2.1 1.5.0
borsh 0.10.2 0.10.4
bumpalo 3.10.0 3.20.3
mio 0.8.4 0.8.11
rustix 0.38.3 0.38.8
rustls-webpki 0.101.1 0.101.6

Updates tokio from 1.20.1 to 1.26.0

Release notes

Sourced from tokio's releases.

Tokio v1.26.0

Fixed

Added

Changed

Internal Changes

Unstable

Documented

... (truncated)

Commits

Updates rustls from 0.21.3 to 0.21.5

Commits
  • b1808ac cargo: prepare 0.21.5 release.
  • 6ff5b77 Revert "Take IntoIterator in add_parsable_certificates()"
  • f613c9f cargo: prepare 0.21.4 release.
  • 11e9386 Prepare to move release notes to github releases
  • 4a9f375 RELEASING.md: restructure, use github releases
  • 7924f00 Take IntoIterator in add_parsable_certificates()
  • 6fedb35 client: with_single_cert -> with_client_auth_cert
  • 208d767 deps: update webpki-roots 0.23.0 -> 0.24.0
  • da5be06 error: use automatic link for RFC 5280 ref.
  • 3e90954 lib: export CertRevocationListError enum.
  • See full diff in compare view

Updates openssl from 0.10.41 to 0.10.80

Release notes

Sourced from openssl's releases.

openssl-v0.10.80

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.79...openssl-v0.10.80

openssl-v0.10.79

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.78...openssl-v0.10.79

openssl-v0.10.78

What's Changed

... (truncated)

Commits
  • 35be7ae Release openssl 0.10.80 and openssl-sys 0.9.116 (#2639)
  • 19eceb2 Fix output buffer overflow in cipher_update_inplace for AES key-wrap-with-pad...
  • b460eb3 Prefer Homebrew openssl@4 and stop looking for openssl@1.1 (#2633)
  • 649f2d9 Release openssl 0.10.79 and openssl-sys 0.9.115 (#2632)
  • 257f9b2 Fix output buffer overflow for AES key-wrap-with-padding ciphers (#2630)
  • d43e917 Reject non-UTF-8 OCSP responder URLs in X509Ref::ocsp_responders (#2631)
  • f46519c Add PkeyCtxRef::set_context_string for ML-DSA (#2629)
  • ad9ae31 Bind OSSL_PARAM_modified and use it for seed_into (#2628)
  • 4e25c9b Fix process abort when verify/PSK callbacks fire after SSL_CTX swap (#2624)
  • 3dd8f42 Add PKeyRef::seed_into for ML-DSA/ML-KEM seed extraction (#2626)
  • Additional commits viewable in compare view

Updates remove_dir_all from 0.7.0 to 0.8.0

Changelog

Sourced from remove_dir_all's changelog.

0.8.0

Security changes

  • Fix TOCTOU race conditions both inside the implementation of functions and the contract: functions now only operate on directories. Callers wanting to process the contents of a symlink (e.g. for remove_dir_contents) should resolve the symlink themselves. This is an API break from 0.7.0, but the previous behaviour was insecure.

    This is due to the same code pattern as caused CVE-2022-21658 in Rust itself: it was possible to trick a privileged process doing a recursive delete in an attacker controlled directory into deleting privileged files, on all operating systems.

    For instance, consider deleting a tree called 'etc' in a parent directory called 'p'. Between calling remove_dir_all("a") and remove_dir_all("a") actually starting its work, the attacker can move 'p' to 'p-prime', and replace 'p' with a symlink to '/'. Then the privileged process deletes 'p/etc' which is actually /etc, and now your system is broken. There are some mitigations for this exact scenario, such as CWD relative file lookup, but they are not guaranteed - any code using absolute paths will not have that protection in place.

    The same attack could be performed at any point in the directory tree being deleted: if 'a' contains a child directory called 'etc', attacking the deletion by replacing 'a' with a link is possible.

    The new code in this release mitigates the attack within the directory tree being deleted by using file-handle relative operations: to open 'a/etc', the path 'etc' relative to 'a' is opened, where 'a' is represented by a file descriptor (Unix) or handle (Windows). With the exception of the entry points into the directory deletion logic, this is robust against manipulation of the directory hierarchy, and remove_dir_all will only delete files and directories contained in the tree it is deleting.

    The entry path however is a challenge - as described above, there are some potential mitigations, but since using them must be done by the calling code, it is hard to be confident about the security properties of the path based interface.

    The new extension trait RemoveDir provides an interface where it is much harder to get it wrong.

    somedir.remove_dir_contents("name-of-child").

    Callers can then make their own security evaluation about how to securely get a directory handle. That is still not particularly obvious, and we're going to follow up with a helper of some sort (probably in the fs_at crate). Once that is available, the path based entry points will get deprecated.

... (truncated)

Commits

Updates rsa from 0.9.2 to 0.9.10

Changelog

Sourced from rsa's changelog.

0.9.10 (2026-01-06)

Fixed

  • do not panic on a prime being 1 when loading a secret key (#624)

#624: RustCrypto/RSA#624

0.9.9 (2025-11-13)

Fixed

  • Support for cryptographic operations with larger keys (#594)

#594: RustCrypto/RSA#594

0.9.8 (2025-03-12)

Added

  • Doc comments to specify the rand version (#473)

#473: RustCrypto/RSA#473

0.9.7 (2024-11-26)

Fixed

  • always validate keys in from_components
  • do not crash when handling tiny keys in PKCS1v15

0.9.6 (2023-12-01)

Added

  • expose a pss::get_default_pss_signature_algo_id helper (#393)
  • expose pkcs1v15::RsaSignatureAssociatedOid (#392)

#392: RustCrypto/RSA#392 #393: RustCrypto/RSA#393

0.9.5 (2023-11-27)

Added

  • Adds RsaPrivateKey::from_primes and RsaPrivateKey::from_p_q methods (#386)

#386: RustCrypto/RSA#386

0.9.4 (2023-11-20)

Added

  • Deterministic implementation of prime factors recovery (#380)

#380: RustCrypto/RSA#380

0.9.3 (2023-10-26)

Added

  • PKCS#8/SPKI decoding trait impls for pkcs1v15 keys (#346)
  • hazmat feature as a replacement for expose-internals (#352)

Changed

... (truncated)

Commits

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 borsh from 0.10.2 to 0.10.4

Release notes

Sourced from borsh's releases.

borsh-derive-internal-v0.10.4

No release notes provided.

borsh-derive-v0.10.4

No release notes provided.

borsh-schema-derive-internal-v0.10.4

No release notes provided.

borsh-v0.10.4

  • Backported a fix for RUSTSEC-2023-0033: Forbid Vectors of Zero-sized types from de-/serialization (#145)
Changelog

Sourced from borsh's changelog.

[0.10.4] - 2024-09-23

  • Backported a fix for RUSTSEC-2023-0033: Forbid Vectors of Zero-sized types from de-/serialization (#145)

[0.10.3] - 2022-03-22

  • Add optional bytes/bytesmut support
Commits
  • a1fe363 release: 0.10.4
  • c545f3c chore: revert workspace and exclude changes (#311)
  • 27843bc chore: prepare 0.10.4 with backported fix (#310)
  • 79097e3 release: Prepare for 0.10.3 release
  • ad25b07 ci: Removed release-plz as it does not play well with the workspaces setup we...
  • c93d434 ci: Add release-plz CI action which will create a PR with a suggestion to cut...
  • e91f405 feat: Add optional bytes/bytesmut support (#132)
  • See full diff in compare view

Updates bumpalo from 3.10.0 to 3.20.3

Changelog

Sourced from bumpalo's changelog.

3.20.3

Released 2026-05-22.

Fixed

  • Fixed the try_alloc_slice_fill_with, alloc_slice_try_fill_with, alloc_slice_fill_with methods to properly rewind the bump pointer on allocation, initialization, and panic failure and avoid wasting bump capacity.
  • Fixed a drop bug in bumpalo::collections::vec::DrainFilter (used by retain and retain_mut) when the predicate panics.

3.20.2

Released 2026-02-19.

Fixed

  • Restored Send and Sync implementations for Box<T> for T: ?Sized types as well.

3.20.1

Released 2026-02-18.

Fixed

  • Restored Send and Sync implementations for Box<T> when T: Send and T: Sync respectively.

3.20.0

Released 2026-02-18.

Added

  • Added the bumpalo::collections::Vec::pop_if method.

Fixed

  • Fixed a bug in the bumpalo::collections::String::retain method in the face of panics.
  • Made bumpalo::collections::Box<T> covariant with T (just like std::boxed::Box<T>).

... (truncated)

Commits

Updates mio from 0.8.4 to 0.8.11

Changelog

Sourced from mio's changelog.

0.8.11

0.8.10

Added

0.8.9

Added

Fixed

0.8.8

Fixed

0.8.7

Added

  • Add/fix support for tvOS and watchOS, Mio should now build for tvOS and

... (truncated)

Commits

Updates openssl-src from 111.22.0+1.1.1q to 300.6.1+3.6.3

Commits

Updates rustix from 0.38.3 to 0.38.8

Commits
  • db14303 chore: Release rustix version 0.38.8
  • 3f9a1aa rustfmt
  • 33cd42b Move some transmutes out of the main code and into #[test]s. (#785)
  • a141847 Make the "hole" test check _PC_MIN_HOLE_SIZE on platforms that have it. (#786)
  • 9e55075 Remove some unnecessary unsafe blocks. (#784)
  • a25ae26 Miscellaneous documentation cleanups. (#778)
  • 5d9bcbc Add a function for SO_DOMAIN. (#779)
  • eb97b82 Construct non-zero types safely at compile-time (#781)
  • a196582 Enable SeekFrom::Hole on more platforms. (#774)
  • 3708b64 Add data() method to kqueue events (#772)
  • Additional commits viewable in compare view

Updates rustls-webpki from 0.101.1 to 0.101.6

Release notes

Sourced from rustls-webpki's releases.

0.101.6

  • The CertificateRevocationList trait's verify_signature Budget argument was removed. This was a semver incompatible change mistakenly introduced in v0.101.5.

What's Changed

Full Changelog: rustls/webpki@v/0.101.5...v/0.101.6

0.101.5

  • Path building complexity is now limited to a maximum budget of path finding operations, avoiding exponential processing time when encountering certificate chains containing many certificates with the same subject/issuer distinguished name but different subject public key information.
  • Name constraints evaluation is now limited to a maximum number of comparison operations, avoiding exponential processing time when encountering certificate chains containing many name constraints and subject alternate names.
  • Subject common names are no longer parsed for name iteration, or applying name constraints. Webpki only uses Subject Alternate Names when validating certificates, and the common name handling was buggy, producing Error::BadDer when iterating certificates with printable string subject common names, or omitted common names encoded as an empty sequence.

What's Changed

The following PRs were backported to the rel-0.101 branch in #170:

  • Further limits on expensive path building (#163)
  • Budget tweaks (#164)
  • Bound name constraint comparisons (#165)
  • Remove subject common name parsing (#169, thanks to @鈥媓awkw)
  • Correct handling of fatal errors (#168)

Thanks to all who have contributed, on behalf of the rustls team (@鈥媍tz, @鈥媍pu and @鈥媎jc)!

0.101.4

Release notes

  • certificate path building and verification is now capped at 100 signature validation operations to avoid the risk of CPU usage denial-of-service attack when validating crafted certificate chains producing quadratic runtime. This risk affected both clients, as well as servers that verified client certificates.

What's Changed

Full Changelog: rustls/webpki@v/0.101.3...v/0.101.4

v/0.101.3

Release Notes

  • TlsServerTrustAnchors, TlsClientTrustAnchors, verify_is_valid_tls_server_cert and verify_is_valid_tls_client_cert deprecation notes improved.

What's Changed

Full Changelog: rustls/webpki@v/0.101.2...v/0.101.3

v/0.101.2

Release notes

... (truncated)

Commits
  • 7956538 Cargo: v0.101.5 -> v0.101.6
  • 7f8208e crl: rm Budget from verify_signature fn
  • 7cb6c64 Cargo: bump version 0.101.4 -> 0.101.5
  • 2dd2a06 verify_cert: use enum for build chain error
  • c255d61 verify_cert: correct handling of fatal errors
  • b166eab error: add is_fatal helper, use in verify_cert
  • cce08ee verify_cert: optional Budget arg for verify_chain helper
  • 08fd439 verify_cert: take references in verify_chain helper
  • c9914e4 Remove common name parsing from NameIterator
  • bb9fe71 Remove tests for common name handling
  • Additional commits viewable in compare view

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 22, 2024
@raviqqe

raviqqe commented Aug 3, 2026

Copy link
Copy Markdown
Owner

@dependabot recreate

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

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.20.1` | `1.26.0` |
| [rustls](https://github.com/rustls/rustls) | `0.21.3` | `0.21.5` |
| [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.41` | `0.10.80` |
| [remove_dir_all](https://github.com/XAMPPRocky/remove_dir_all) | `0.7.0` | `0.8.0` |
| [rsa](https://github.com/RustCrypto/RSA) | `0.9.2` | `0.9.10` |
| [whoami](https://github.com/ardaku/whoami) | `1.2.1` | `1.5.0` |
| [borsh](https://github.com/near/borsh-rs) | `0.10.2` | `0.10.4` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.10.0` | `3.20.3` |
| [mio](https://github.com/tokio-rs/mio) | `0.8.4` | `0.8.11` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.3` | `0.38.8` |
| [rustls-webpki](https://github.com/rustls/webpki) | `0.101.1` | `0.101.6` |



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

Updates `rustls` from 0.21.3 to 0.21.5
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.21.3...v/0.21.5)

Updates `openssl` from 0.10.41 to 0.10.80
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.41...openssl-v0.10.80)

Updates `remove_dir_all` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/XAMPPRocky/remove_dir_all/releases)
- [Changelog](https://github.com/XAMPPRocky/remove_dir_all/blob/master/CHANGELOG.md)
- [Commits](https://github.com/XAMPPRocky/remove_dir_all/compare/v0.7.0...remove_dir_all@0.8.0)

Updates `rsa` from 0.9.2 to 0.9.10
- [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.10/CHANGELOG.md)
- [Commits](RustCrypto/RSA@v0.9.2...v0.9.10)

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 `borsh` from 0.10.2 to 0.10.4
- [Release notes](https://github.com/near/borsh-rs/releases)
- [Changelog](https://github.com/near/borsh-rs/blob/borsh-v0.10.4/CHANGELOG.md)
- [Commits](near/borsh-rs@v0.10.2...borsh-v0.10.4)

Updates `bumpalo` from 3.10.0 to 3.20.3
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.10.0...v3.20.3)

Updates `mio` from 0.8.4 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](tokio-rs/mio@v0.8.4...v0.8.11)

Updates `openssl-src` from 111.22.0+1.1.1q to 300.6.1+3.6.3
- [Release notes](https://github.com/alexcrichton/openssl-src-rs/releases)
- [Commits](https://github.com/alexcrichton/openssl-src-rs/commits)

Updates `rustix` from 0.38.3 to 0.38.8
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md)
- [Commits](bytecodealliance/rustix@v0.38.3...v0.38.8)

Updates `rustls-webpki` from 0.101.1 to 0.101.6
- [Release notes](https://github.com/rustls/webpki/releases)
- [Commits](rustls/webpki@v/0.101.1...v/0.101.6)

---
updated-dependencies:
- dependency-name: borsh
  dependency-version: 0.10.3
  dependency-type: indirect
- dependency-name: bumpalo
  dependency-version: 3.16.0
  dependency-type: indirect
- dependency-name: mio
  dependency-version: 0.8.8
  dependency-type: indirect
- dependency-name: openssl
  dependency-version: 0.10.66
  dependency-type: direct:production
- dependency-name: openssl-src
  dependency-version: 300.3.1+3.3.1
  dependency-type: indirect
- dependency-name: remove_dir_all
  dependency-version: 0.8.0
  dependency-type: direct:production
- dependency-name: rsa
  dependency-version: 0.9.6
  dependency-type: direct:production
- dependency-name: rustix
  dependency-version: 0.35.16
  dependency-type: indirect
- dependency-name: rustls
  dependency-version: 0.21.5
  dependency-type: direct:production
- dependency-name: rustls-webpki
  dependency-version: 0.101.6
  dependency-type: indirect
- dependency-name: tokio
  dependency-version: 1.20.4
  dependency-type: direct:production
- dependency-name: whoami
  dependency-version: 1.5.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/cargo-0bf2fd03da branch from 434b7e4 to 988978d Compare August 3, 2026 05:48
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant