Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 20 updates#2244

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/minor-and-patch-6de17f04a2
Closed

chore(deps): bump the minor-and-patch group across 1 directory with 20 updates#2244
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/minor-and-patch-6de17f04a2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

Bumps the minor-and-patch group with 20 updates in the / directory:

Package From To
axum 0.8.4 0.8.6
bon 3.7.2 3.8.0
regex 1.11.2 1.11.3
serde 1.0.226 1.0.228
serde_with 3.14.1 3.15.0
sysinfo 0.37.0 0.37.2
thiserror 2.0.16 2.0.17
tokio-rustls 0.26.3 0.26.4
rmcp 0.6.4 0.8.0
octocrab 0.45.0 0.46.0
rcgen 0.14.4 0.14.5
flatbuffers 25.2.10 25.9.23
libc 0.2.175 0.2.176
moka 0.12.10 0.12.11
opentelemetry 0.30.0 0.31.0
opentelemetry-appender-tracing 0.30.1 0.31.1
opentelemetry-otlp 0.30.0 0.31.0
opentelemetry-semantic-conventions 0.30.0 0.31.0
opentelemetry_sdk 0.30.0 0.31.0
tracing-opentelemetry 0.31.0 0.32.0

Updates axum from 0.8.4 to 0.8.6

Release notes

Sourced from axum's releases.

axum v0.8.5

  • fixed: Reject JSON request bodies with trailing characters after the JSON document (#3453)
  • added: Implement OptionalFromRequest for Multipart (#3220)
  • added: Getter methods Location::{status_code, location}
  • added: Support for writing arbitrary binary data into server-sent events (#3425)]
  • added: middleware::ResponseAxumBodyLayer for mapping response body to axum::body::Body (#3469)
  • added: impl FusedStream for WebSocket (#3443)
  • changed: The sse module and Sse type no longer depend on the tokio feature (#3154)
  • changed: If the location given to one of Redirects constructors is not a valid header value, instead of panicking on construction, the IntoResponse impl now returns an HTTP 500, just like Json does when serialization fails (#3377)
  • changed: Update minimum rust version to 1.78 (#3412)

#3154: tokio-rs/axum#3154 #3220: tokio-rs/axum#3220 #3377: tokio-rs/axum#3377 #3412: tokio-rs/axum#3412 #3425: tokio-rs/axum#3425 #3443: tokio-rs/axum#3443 #3453: tokio-rs/axum#3453 #3469: tokio-rs/axum#3469

Commits

Updates bon from 3.7.2 to 3.8.0

Release notes

Sourced from bon's releases.

v3.8.0

Lint Update Notice

This release brings some rustdoc improvements and no other visible API changes except that rustc and clippy will start reporting some more true-positive lints. For example builder methods defined via an impl block annotated with #[bon] will now be correctly reported as unused if they are not used. Also, using a private type in a public builder method will trigger a private_interfaces lint now.

This is all thanks to the updated span handling design researched and implemented by @​Eisverygoodletter. It's not clear what other new lints the new span handling may trigger in other realworld codebases. If you see a lint from the code generated by bon that you think shouldn't be there, please, open an issue, and it'll be fixed as soon as possible!

Changed

  • Make rustdoc source links for the starting function reference original function (#341). Thanks @​Eisverygoodletter for the contribution!
  • Make rustdoc source links for setters/getters reference original member (#345)

Internal

Commits
  • 09b719a Update changelog (#348)
  • 40efe52 chore: release v3.8.0 (#346)
  • 76a4e34 Update dependencies (#347)
  • fcf99c1 Make rustdoc source links for setters/getters/other_items reference original ...
  • 40042ef Add some more assertions to eliminate dead code lints in tests (#343)
  • 055d91b Preserve fn and {} for start_fn so that rustdoc generates correct links...
  • 616c718 Fix msrv and unstable CI jobs (#342)
  • c0e4356 Fix msrv tests for 1.61.0 (#340)
  • See full diff in compare view

Updates regex from 1.11.2 to 1.11.3

Changelog

Sourced from regex's changelog.

1.11.3 (2025-09-25)

This is a small patch release with an improvement in memory usage in some cases.

Improvements:

Commits

Updates serde from 1.0.226 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)
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_with from 3.14.1 to 3.15.0

Release notes

Sourced from serde_with's releases.

serde_with v3.15.0

Added

  • Added error inspection to VecSkipError and MapSkipError by @​michelhe (#878) This allows interacting with the previously hidden error, for example for logging. Checkout the newly added example to both types.

  • Allow documenting the types generated by serde_conv!. The serde_conv! macro now acceps outer attributes before the optional visibility modifier. This allow adding doc comments in the shape of #[doc = "..."] or any other attributes, such as lint modifiers.

    serde_conv!(
        #[doc = "Serialize bools as string"]
        #[allow(dead_code)]
        pub BoolAsString,
        bool,
        |x: &bool| ::std::string::ToString::to_string(x),
        |x: ::std::string::String| x.parse()
    );
  • Add support for hashbrown v0.16 (#877)

    This extends the existing support for hashbrown v0.14 and v0.15 to the newly released version.

Changed

  • Bump MSRV to 1.76, since that is required for toml dev-dependency.
Commits
  • ea38dce Bump version to 3.15.0 (#892)
  • a3da8e6 Bump version to 3.15.0
  • c36e692 Bump dev-dependencies (#891)
  • ae8466d Bump dev-dependencies
  • f7337ff Support serde_core and remove dependencies on serde_derive (#889)
  • c1d73b3 Replace serde with serde_core in all files
  • 320d292 Remove dependency on serde_derive
  • dca6df8 Remove version-sync crate and reimplement needed functionality with regex and...
  • 6c6e53f Remove version-sync crate and reimplement needed functionality with regex and...
  • f64ea40 Add support for hashbrown v0.16 (#888)
  • Additional commits viewable in compare view

Updates sysinfo from 0.37.0 to 0.37.2

Changelog

Sourced from sysinfo's changelog.

0.37.2

  • Improve documentation of System::refresh_cpu_all and of System::refresh_cpu_specifics.
  • Android: Fix System::uptime.
  • Linux: Correctly handled modified/removed Process::exe paths.

0.37.1

  • Fix serde serialization on Process::name.
  • Linux: Fix get_cpu_frequency on loongarch64.
  • Windows: Correctly handle invalid UTF-8 string in Motherboard.
Commits
  • 067dd61 Merge pull request #1589 from GuillaumeGomez/update
  • 3ac7887 Update version to 0.37.2
  • 3269940 Update CHANGELOG for 0.37.2
  • 80bcfb2 Merge pull request #1588 from GuillaumeGomez/doc
  • 1c19785 Improve documentation of System::refresh_cpu_specifics
  • 90f9005 Merge pull request #1586 from GuillaumeGomez/linux-exe-link
  • cd837f7 Linux: Correctly handle removed exe link paths
  • b5a341d Merge pull request #1583 from GuillaumeGomez/uptime-android
  • b23eb6a Correctly get uptime information on Android
  • cb15018 Merge pull request #1581 from GuillaumeGomez/improve-docs
  • Additional commits viewable in compare view

Updates thiserror from 2.0.16 to 2.0.17

Release notes

Sourced from thiserror's releases.

2.0.17

  • Use differently named __private module per patch release (#434)
Commits
  • 72ae716 Release 2.0.17
  • 599fdce Merge pull request #434 from dtolnay/private
  • 9ec05f6 Use differently named __private module per patch release
  • d2c492b Raise minimum tested compiler to rust 1.76
  • fc3ab95 Opt in to generate-macro-expansion when building on docs.rs
  • 819fe29 Update ui test suite to nightly-2025-09-12
  • 259f48c Enforce trybuild >= 1.0.108
  • 470e6a6 Update ui test suite to nightly-2025-08-24
  • 544e191 Update actions/checkout@v4 -> v5
  • cbc1eba Delete duplicate cap-lints flag from build script
  • See full diff in compare view

Updates tokio-rustls from 0.26.3 to 0.26.4

Release notes

Sourced from tokio-rustls's releases.

0.26.4

What's Changed

Commits
  • 0c14e14 Bump version to 0.26.4
  • 9074308 Add TLS certificate compression features
  • 7ee318d build(deps): bump seanmiddleditch/gha-setup-ninja from 4 to 6
  • 6f740df build(deps): bump rcgen from 0.14.4 to 0.14.5
  • dc01fcd build(deps): bump actions/checkout from 3 to 5
  • fb76ce3 Add Dependabot configuration
  • See full diff in compare view

Updates rmcp from 0.6.4 to 0.8.0

Release notes

Sourced from rmcp's releases.

rmcp-macros-v0.8.0

Fixed

  • generate default schema for tools with no params (#446)

rmcp-v0.8.0

Added

  • allow clients to override client_name (#469)

Fixed

  • (oauth) support suffixed and preffixed well-knonw paths (#459)
  • generate default schema for tools with no params (#446)

Other

  • bump to rust 1.90.0 (#453)

rmcp-macros-v0.7.0

Fixed

  • (macros) support #[doc = include_str!(...)] for macros (#444)
  • (clippy) add doc comment for generated tool attr fn (#439)

Other

  • (root) Add Terminator to Built with rmcp section (#437)

rmcp-v0.7.0

Fixed

  • return auth errors (#451)
  • (oauth) do not treat empty secret as valid for public clients (#443)
  • (clippy) add doc comment for generated tool attr fn (#439)
  • (oauth) require CSRF token as part of the OAuth authorization flow. (#435)

Other

  • (root) Add Terminator to Built with rmcp section (#437)
  • Non-empty paths in OAuth2 Authorization Server Metadata URLs (#441)
Commits

Updates octocrab from 0.45.0 to 0.46.0

Release notes

Sourced from octocrab's releases.

v0.46.0

Fixed

  • [breaking] make CommitAuthor email nullable (#799)

Other

  • Expose digest field in Asset model (#804)
  • cargo clippy (#803)
  • fix doc url for ProjectHandler (#802)
Changelog

Sourced from octocrab's changelog.

0.46.0 - 2025-09-28

Fixed

  • [breaking] make CommitAuthor email nullable (#799)

Other

  • Expose digest field in Asset model (#804)
  • cargo clippy (#803)
  • fix doc url for ProjectHandler (#802)
Commits

Updates rcgen from 0.14.4 to 0.14.5

Release notes

Sourced from rcgen's releases.

0.14.5

Implement SigningKey for &impl SigningKey to make Issuer more broadly useful.

What's Changed

Commits
  • 957a3d8 Bump rcgen version to 0.14.5
  • befba1f Forward signing and public key data through references
  • See full diff in compare view

Updates flatbuffers from 25.2.10 to 25.9.23

Release notes

Sourced from flatbuffers's releases.

FlatBuffers Version 25.9.23

What's Changed

... (truncated)

Changelog

Sourced from flatbuffers's changelog.

[25.9.23] (September 23 2025)(https://github.com/google/flatbuffers/releases/tag/v25.9.23)

  • flatc: --grpc-callback-api flag generates C++ gRPC Callback API server CallbackService skeletons AND client native callback/async stubs (unary + all streaming reactor forms) (opt-in, non-breaking, issue #8596).
  • Swift - Adds new API to reduce memory copying within swift (#8484)
  • Rust - Support Rust edition 2024 (#8638)

[:C++] - Use the Google Style for clang-format without exceptions (#8706)

Commits
  • 1872409 FlatBuffers Version 25.9.23 (#8708)
  • c427e1a Bump the npm_and_yarn group across 1 directory with 2 updates (#8704)
  • caf3b49 bulk code format fix (#8707)
  • 0e04786 Use the Google Style for clang-format without exceptions (#8706)
  • 881eaab Revert back to use the latest from the swiftly ci (#8702)
  • 48eccb8 fix(idl_gen_ts): bool to number conversion in mutable API (#8677)
  • 3c0511f [C#] Added ToSizedArrayPadded(int padLeft, int padRight) to ByteBuffers to av...
  • 82396fa [C#] Improve Span<> utilization (#8588)
  • a6b337f Add bounds checking to a method where it was missing (#8673)
  • 35230bd [C#] Fix union verifier (#8593)
  • Additional commits viewable in compare view

Updates libc from 0.2.175 to 0.2.176

Release notes

Sourced from libc's releases.

0.2.176

Support

  • The default FreeBSD version has been raised from 11 to 12. This matches rustc since 1.78. (#2406)
  • Debug is now always implemented, rather than being gated behind the extra_traits feature. (#4624)

Added

  • AIX: Restore some non-POSIX functions guarded by the _KERNEL macro. (#4607)
  • FreeBSD 14: Add st_fileref to struct stat (#4642)
  • Haiku: Add the accept4 POSIX call (#4586)
  • Introduce a wrapper for representing padding (#4632)
  • Linux: Add EM_RISCV (#4659)
  • Linux: Add MS_NOSYMFOLLOW (#4389)
  • Linux: Add backtrace_symbols(_fd) (#4668)
  • Linux: Add missing SOL_PACKET optnames (#4669)
  • Musl s390x: Add SYS_mseal (#4549)
  • NuttX: Add __errno (#4687)
  • Redox: Add dirfd, VDISABLE, and resource consts (#4660)
  • Redox: Add more resource.h, fcntl.h constants (#4666)
  • Redox: Enable strftime and mkostemp[s] (#4629)
  • Unix, Windows: Add qsort_r (Unix), and qsort(_s) (Windows) (#4677)
  • Unix: Add dlvsym for Linux-gnu, FreeBSD, and NetBSD (#4671)
  • Unix: Add sigqueue (#4620)

Changed

  • FreeBSD 15: Mark kinfo_proc as non-exhaustive (#4553)
  • FreeBSD: Set the ELF symbol version for readdir_r (#4694)
  • Linux: Correct the config for whether or not epoll_event is packed (#4639)
  • Tests: Replace the old ctest with the much more reliable new implementation (#4655 and many related PRs)

Fixed

  • AIX: Fix the type of the 4th arguement of getgrnam_r ([#4656](rust-lang/libc#4656
  • FreeBSD: Limit P_IDLEPROC to FreeBSD 15 (#4640)
  • FreeBSD: Limit mcontext_t::mc_tlsbase to FreeBSD 15 (#4640)
  • FreeBSD: Update gating of mcontext_t.mc_tlsbase (#4703)
  • Musl s390x: Correct the definition of statfs[64] (#4549)
  • Musl s390x: Make fpreg_t a union (#4549)
  • Redox: Fix the types of gid_t and uid_t (#4689)
  • Redox: Fix the value of MAP_FIXED (#4684)

Deprecated

  • Apple: Correct the deprecated attribute for iconv (a97a0b53)
  • FreeBSD: Deprecate TIOCMGDTRWAIT and TIOCMSDTRWAIT (#4685)

Removed

... (truncated)

Changelog

Sourced from libc's changelog.

0.2.176 - 2025-09-23

Support

  • The default FreeBSD version has been raised from 11 to 12. This matches rustc since 1.78. (#2406)
  • Debug is now always implemented, rather than being gated behind the extra_traits feature. (#4624)

Added

  • AIX: Restore some non-POSIX functions guarded by the _KERNEL macro. (#4607)
  • FreeBSD 14: Add st_fileref to struct stat (#4642)
  • Haiku: Add the accept4 POSIX call (#4586)
  • Introduce a wrapper for representing padding (#4632)
  • Linux: Add EM_RISCV (#4659)
  • Linux: Add MS_NOSYMFOLLOW (#4389)
  • Linux: Add backtrace_symbols(_fd) (#4668)
  • Linux: Add missing SOL_PACKET optnames (#4669)
  • Musl s390x: Add SYS_mseal (#4549)
  • NuttX: Add __errno (#4687)
  • Redox: Add dirfd, VDISABLE, and resource consts (#4660)
  • Redox: Add more resource.h, fcntl.h constants (#4666)
  • Redox: Enable strftime and mkostemp[s] (#4629)
  • Unix, Windows: Add qsort_r (Unix), and qsort(_s) (Windows) (#4677)
  • Unix: Add dlvsym for Linux-gnu, FreeBSD, and NetBSD (#4671)
  • Unix: Add sigqueue (#4620)

Changed

  • FreeBSD 15: Mark kinfo_proc as non-exhaustive (#4553)
  • FreeBSD: Set the ELF symbol version for readdir_r (#4694)
  • Linux: Correct the config for whether or not epoll_event is packed (#4639)
  • Tests: Replace the old ctest with the much more reliable new implementation (#4655 and many related PRs)

Fixed

  • AIX: Fix the type of the 4th arguement of getgrnam_r ([#4656](rust-lang/libc#4656
  • FreeBSD: Limit P_IDLEPROC to FreeBSD 15 (#4640)
  • FreeBSD: Limit mcontext_t::mc_tlsbase to FreeBSD 15 (#4640)
  • FreeBSD: Update gating of mcontext_t.mc_tlsbase (#4703)
  • Musl s390x: Correct the definition of statfs[64] (#4549)
  • Musl s390x: Make fpreg_t a union (#4549)
  • Redox: Fix the types of gid_t and uid_t (#4689)
  • Redox: Fix the value of MAP_FIXED (#4684)

Deprecated

  • Apple: Correct the deprecated attribute for iconv (a97a0b53)
  • FreeBSD: Deprecate TIOCMGDTRWAIT and TIOCMSDTRWAIT (#4685)

Removed

... (truncated)

Commits
  • 15e1389 chore: Release libc 0.2.176
  • 6ca5571 Warn on missing debug implementations
  • e653c54 cleanup: Remove the const_fn! macro
  • e447441 cleanup: Simplify the syntax of f! and similar macros
  • 776a614 cleanup: Use target_vendor = "apple"
  • d32f60d doc: Remove an unneeded link to the old ctest repo
  • 8c8584b Resolve a ctest FIXME regarding use of size_of in array lengths
  • 09c8436 Remove the libc_ctest feature
  • fd3ffe4 Remove libc_const_extern_fn
  • 9b77a49 Add a note about why Padding requires T: Copy
  • Additional commits viewable in compare view

Updates moka from 0.12.10 to 0.12.11

Changelog

Sourced from moka's changelog.

Version 0.12.11

Added

  • Support Equivalent trait for the key type K of the caches. (#492[gh-pull-0492])
  • Added the jittered_expiry_policy example (#489[gh-pull-0489]).

Changed

  • Adjusted license expression: some code is Apache-2.0 only (#529[gh-pull-0529], by [@​musicinmybrain][gh-musicinmybrain]).
    • The license expression in Cargo.toml was changed from MIT OR Apache-2.0 to (MIT OR Apache-2.0) AND Apache-2.0.
    • See the license section of the README for details.
  • Upgrading a crate in the dependencies:
    • Raised the minimum version of crossbeam-channel crate from v0.5.5 to v0.5.15 to avoid the following issue (#514[gh-pull-0514], by [karankurbur][gh-karankurbur]).
      • [RUSTSEC-2025-0024] crossbeam-channel: double free on Drop
  • Moving a crate from the dependencies to the dev-dependencies:
    • Switched loom crate to a dev-dependency (#509[gh-pull-0509], by [thomaseizinger][gh-thomaseizinger]).
  • Updating a crate in the dev-dependencies:
    • Upgraded reqwest crate in the dev-dependencies from v0.11 to v0.12 (#531[gh-pull-0531], by [musicinmybrain][gh-musicinmybrain]).

Removed

  • Removing a crate from the dependencies:
    • Removed thiserror crate by manually implementing std::error::Error for moka::PredicateError (#512[gh-pull-0512], by [@​brownjohnf][gh-brownjohnf]).
  • Removing crates from the dev-dependencies:
    • Removed unmaintained paste crate from the dev-dependencies (#504[gh-pull-0504]).
      • [RUSTSEC-2024-0436] paste - no longer maintained
    • Removed discontinued async-std crate from the dev-dependencies (#534[gh-pull-0534]).
      • [RUSTSEC-2025-0052] async-std has been discontinued
  • Removed clippy ignore non_send_fields_in_send_ty that no longer applies (#505[gh-pull-0505], by [@​qti3e][gh-qti3e]).

Fixed

  • Remove redundant word in source code comment (#532[gh-pull-0532], by [@​quantpoet][gh-quantpoet]).
Commits

…0 updates

Bumps the minor-and-patch group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [axum](https://github.com/tokio-rs/axum) | `0.8.4` | `0.8.6` |
| [bon](https://github.com/elastio/bon) | `3.7.2` | `3.8.0` |
| [regex](https://github.com/rust-lang/regex) | `1.11.2` | `1.11.3` |
| [serde](https://github.com/serde-rs/serde) | `1.0.226` | `1.0.228` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.14.1` | `3.15.0` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.37.0` | `0.37.2` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.16` | `2.0.17` |
| [tokio-rustls](https://github.com/rustls/tokio-rustls) | `0.26.3` | `0.26.4` |
| [rmcp](https://github.com/modelcontextprotocol/rust-sdk) | `0.6.4` | `0.8.0` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.45.0` | `0.46.0` |
| [rcgen](https://github.com/rustls/rcgen) | `0.14.4` | `0.14.5` |
| [flatbuffers](https://github.com/google/flatbuffers) | `25.2.10` | `25.9.23` |
| [libc](https://github.com/rust-lang/libc) | `0.2.175` | `0.2.176` |
| [moka](https://github.com/moka-rs/moka) | `0.12.10` | `0.12.11` |
| [opentelemetry](https://github.com/open-telemetry/opentelemetry-rust) | `0.30.0` | `0.31.0` |
| [opentelemetry-appender-tracing](https://github.com/open-telemetry/opentelemetry-rust) | `0.30.1` | `0.31.1` |
| [opentelemetry-otlp](https://github.com/open-telemetry/opentelemetry-rust) | `0.30.0` | `0.31.0` |
| [opentelemetry-semantic-conventions](https://github.com/open-telemetry/opentelemetry-rust) | `0.30.0` | `0.31.0` |
| [opentelemetry_sdk](https://github.com/open-telemetry/opentelemetry-rust) | `0.30.0` | `0.31.0` |
| [tracing-opentelemetry](https://github.com/tokio-rs/tracing-opentelemetry) | `0.31.0` | `0.32.0` |



Updates `axum` from 0.8.4 to 0.8.6
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](tokio-rs/axum@axum-v0.8.4...axum-v0.8.6)

Updates `bon` from 3.7.2 to 3.8.0
- [Release notes](https://github.com/elastio/bon/releases)
- [Changelog](https://github.com/elastio/bon/blob/master/release-plz.toml)
- [Commits](elastio/bon@v3.7.2...v3.8.0)

Updates `regex` from 1.11.2 to 1.11.3
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.2...1.11.3)

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

Updates `serde_with` from 3.14.1 to 3.15.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.14.1...v3.15.0)

Updates `sysinfo` from 0.37.0 to 0.37.2
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.37.0...v0.37.2)

Updates `thiserror` from 2.0.16 to 2.0.17
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.16...2.0.17)

Updates `tokio-rustls` from 0.26.3 to 0.26.4
- [Release notes](https://github.com/rustls/tokio-rustls/releases)
- [Commits](rustls/tokio-rustls@v/0.26.3...v/0.26.4)

Updates `rmcp` from 0.6.4 to 0.8.0
- [Release notes](https://github.com/modelcontextprotocol/rust-sdk/releases)
- [Commits](https://github.com/modelcontextprotocol/rust-sdk/commits/rmcp-v0.8.0)

Updates `octocrab` from 0.45.0 to 0.46.0
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.45.0...v0.46.0)

Updates `rcgen` from 0.14.4 to 0.14.5
- [Release notes](https://github.com/rustls/rcgen/releases)
- [Commits](rustls/rcgen@v0.14.4...v0.14.5)

Updates `flatbuffers` from 25.2.10 to 25.9.23
- [Release notes](https://github.com/google/flatbuffers/releases)
- [Changelog](https://github.com/google/flatbuffers/blob/master/CHANGELOG.md)
- [Commits](google/flatbuffers@v25.2.10...v25.9.23)

Updates `libc` from 0.2.175 to 0.2.176
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.176/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.175...0.2.176)

Updates `moka` from 0.12.10 to 0.12.11
- [Changelog](https://github.com/moka-rs/moka/blob/main/CHANGELOG.md)
- [Commits](moka-rs/moka@v0.12.10...v0.12.11)

Updates `opentelemetry` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-0.30.0...v0.31.0)

Updates `opentelemetry-appender-tracing` from 0.30.1 to 0.31.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-rust/commits)

Updates `opentelemetry-otlp` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-otlp-0.30.0...v0.31.0)

Updates `opentelemetry-semantic-conventions` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-semantic-conventions-0.30.0...v0.31.0)

Updates `opentelemetry_sdk` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry_sdk-0.30.0...v0.31.0)

Updates `tracing-opentelemetry` from 0.31.0 to 0.32.0
- [Release notes](https://github.com/tokio-rs/tracing-opentelemetry/releases)
- [Changelog](https://github.com/tokio-rs/tracing-opentelemetry/blob/v0.1.x/CHANGELOG.md)
- [Commits](tokio-rs/tracing-opentelemetry@v0.31.0...v0.32.0)

---
updated-dependencies:
- dependency-name: axum
  dependency-version: 0.8.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: bon
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: regex
  dependency-version: 1.11.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: serde
  dependency-version: 1.0.228
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: serde_with
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sysinfo
  dependency-version: 0.37.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: thiserror
  dependency-version: 2.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tokio-rustls
  dependency-version: 0.26.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rmcp
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: octocrab
  dependency-version: 0.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rcgen
  dependency-version: 0.14.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: flatbuffers
  dependency-version: 25.9.23
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: libc
  dependency-version: 0.2.176
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: moka
  dependency-version: 0.12.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: opentelemetry
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: opentelemetry-appender-tracing
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: opentelemetry-otlp
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: opentelemetry-semantic-conventions
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: opentelemetry_sdk
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tracing-opentelemetry
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

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 6, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Oct 6, 2025

Assignees

The following users could not be added as assignees: apache/iggy-committers. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 6, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Oct 13, 2025

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

@dependabot dependabot bot closed this Oct 13, 2025
@dependabot dependabot bot deleted the dependabot/cargo/minor-and-patch-6de17f04a2 branch October 13, 2025 20:24
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