Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps the mycelium group with 6 updates in the / directory:

Package From To
tokio-util 0.7.16 0.7.17
rustls 0.23.34 0.23.35
netdev 0.38.2 0.39.0
openssl 0.10.74 0.10.75
axum-extra 0.10.3 0.12.1
nix 0.29.0 0.30.1

Updates tokio-util from 0.7.16 to 0.7.17

Commits
  • 454fd8c chore: prepare tokio-util v0.7.17 (#7719)
  • 4421022 codec: remove unnecessary trait bounds on all Framed constructors (#7716)
  • 5a709e3 io_uring: change Completable to not return io::Result (#7702)
  • 5efb1c3 io: doc that AsyncWrite does not inherit from Write (#7705)
  • f490029 runtime: revert "replace manual vtable definitions with Wake" (#7699)
  • d25778f task: add tests for task::Builder::spawn_local (#7697)
  • b8318fa task: add tests for spawn_local in panic scenarios (#7694)
  • acfdb87 task: use #[tokio::test] explicitly in tests/task_builder.rs (#7698)
  • d060401 sync: return TryRecvError::Disconnected from Receiver::try_recv after `Re...
  • 5dacc2e task: add tests for spawn_local and spawn_local_on (#7609)
  • Additional commits viewable in compare view

Updates rustls from 0.23.34 to 0.23.35

Commits
  • 7768cd2 Bump version to 0.23.35
  • 6ed925e Address nightly clippy::derivable_impls lints
  • 645095f Pass through attributes for enum_builder!
  • 90e28d6 fix: only add ocsp in ConfigBuilder::with_single_cert_with_ocsp if
  • See full diff in compare view

Updates netdev from 0.38.2 to 0.39.0

Release notes

Sourced from netdev's releases.

v0.39.0

What's Changed

MacAddr implementation

Since v0.39.0, netdev now uses mac-addr a standalone and lightweight MAC address library developed by the same author (@​shellrow).
This update is fully backward-compatible (no breaking changes).

Full Changelog: shellrow/netdev@v0.38.2...v0.39.0

Commits

Updates openssl from 0.10.74 to 0.10.75

Release notes

Sourced from openssl's releases.

openssl-v0.10.75

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.74...openssl-v0.10.75

Commits
  • 09b90d0 Merge pull request #2518 from alex/bump-for-release
  • 26533f3 Release openssl v0.10.75 and openssl-sys v0.9.111
  • 395ecca Merge pull request #2517 from alex/claude/fix-ocsp-find-status-011CUqcGFNKeKJ...
  • cc26867 Fix unsound OCSP find_status handling of optional next_update field
  • 95aa8e8 Merge pull request #2513 from botovq/libressl-stable
  • e735a32 CI: bump LibreSSL 4.x branches to latest releases
  • 21ab91d Merge pull request #2510 from huwcbjones/huw/sys/evp-mac
  • d9161dc sys/evp: add EVP_MAC symbols
  • 3fd4bf2 Merge pull request #2508 from goffrie/oaep-label
  • 52022fd Implement set_rsa_oaep_label for AWS-LC/BoringSSL
  • Additional commits viewable in compare view

Updates axum-extra from 0.10.3 to 0.12.1

Release notes

Sourced from axum-extra's releases.

axum-extra v0.12.0

  • breaking: Remove unused async-stream feature, which was accidentally introduced as an implicit feature through an optional dependency which was no longer being used (#3298)
  • breaking: option_layer now maps the Response body type to axum::body::Body (#3469)
  • breaking: Some new features are added which need to be opted in (#3485).
    • Cached extractor requires cached feature.
    • The handler utilities require handler feature.
    • The middleware utilities require middleware feature.
    • OptionalPath extractor requires optional-path feature.
    • The routing utilities require routing feature.
    • WithRejection extractor requires with-rejection feature.
  • breaking: Upgraded prost dependency to v0.14. (#3517)

#3298: tokio-rs/axum#3298 #3469: tokio-rs/axum#3469 #3485: tokio-rs/axum#3485 #3517: tokio-rs/axum#3517

axum-extra v0.11.0

Yanked from crates.io due to unforeseen breaking change, see #3190 for details


  • breaking: Remove unused async-stream feature, which was accidentally introduced as an implicit feature through an optional dependency which was no longer being used (#3145)
  • fixed: Fix a broken link in the documentation of ErasedJson (#3186)
  • changed: Make the status function of rejections a const function, such as FormRejection, QueryRejection and MultipartRejection (#3168)

#3145: tokio-rs/axum#3145 #3168: tokio-rs/axum#3168 #3186: tokio-rs/axum#3186

Commits

Updates nix from 0.29.0 to 0.30.1

Changelog

Sourced from nix's changelog.

[0.30.1] - 2025-05-04

Fixed

[0.30.0] - 2025-04-29

Added

  • Add socket option IPV6_PKTINFO for BSDs/Linux/Android, also IPV6_RECVPKTINFO for DragonFlyBSD (#2113)
  • Add fcntl's F_PREALLOCATE constant for Apple targets. (#2393)
  • Improve support for extracting the TTL / Hop Limit from incoming packets and support for DSCP (ToS / Traffic Class). (#2425)
  • Add socket option IP_TOS (nix::sys::socket::sockopt::IpTos) IPV6_TCLASS (nix::sys::socket::sockopt::Ipv6TClass) on Android/FreeBSD (#2464)
  • Add SeekData and SeekHole to Whence for hurd and apple targets (#2473)
  • Add From trait implementation between SocketAddr and Sockaddr, Sockaddr6 (#2474)
  • Added wrappers for posix_spawn API (#2475)
  • Add the support for Emscripten. (#2477)
  • Add fcntl constant F_RDADVISE for Apple target (#2480)
  • Add fcntl constant F_RDAHEAD for Apple target (#2482)
  • Add F_LOG2PHYS and F_LOG2PHYS_EXT for Apple target (#2483)
  • MAP_SHARED_VALIDATE was added for all linux targets. & MAP_SYNC was added for linux with the exclusion of mips architecures, and uclibc (#2499)
  • Add getregs()/getregset()/setregset() for Linux/musl/aarch64 (#2502)
  • Add FcntlArgs F_TRANSFEREXTENTS constant for Apple targets (#2504)
  • Add MapFlags::MAP_STACK in sys::man for netbsd (#2526)
  • Add support for libc::LOCAL_PEERTOKEN in getsockopt. (#2529)
  • Add support for syslog, openlog, closelog on all unix.

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

Bumps the mycelium group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.16` | `0.7.17` |
| [rustls](https://github.com/rustls/rustls) | `0.23.34` | `0.23.35` |
| [netdev](https://github.com/shellrow/netdev) | `0.38.2` | `0.39.0` |
| [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.74` | `0.10.75` |
| [axum-extra](https://github.com/tokio-rs/axum) | `0.10.3` | `0.12.1` |
| [nix](https://github.com/nix-rust/nix) | `0.29.0` | `0.30.1` |



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

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

Updates `netdev` from 0.38.2 to 0.39.0
- [Release notes](https://github.com/shellrow/netdev/releases)
- [Commits](shellrow/netdev@v0.38.2...v0.39.0)

Updates `openssl` from 0.10.74 to 0.10.75
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.74...openssl-v0.10.75)

Updates `axum-extra` from 0.10.3 to 0.12.1
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/axum/commits)

Updates `nix` from 0.29.0 to 0.30.1
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.29.0...v0.30.1)

---
updated-dependencies:
- dependency-name: tokio-util
  dependency-version: 0.7.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: rustls
  dependency-version: 0.23.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: netdev
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mycelium
- dependency-name: openssl
  dependency-version: 0.10.75
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: axum-extra
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mycelium
- dependency-name: nix
  dependency-version: 0.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mycelium
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Nov 10, 2025
@dependabot dependabot bot requested a review from LeeSmet as a code owner November 10, 2025 23:09
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Nov 10, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

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

@dependabot dependabot bot closed this Nov 17, 2025
@dependabot dependabot bot deleted the dependabot/cargo/mycelium-c9dc5624a2 branch November 17, 2025 23:08
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