Skip to content

Bump the rust-dependencies group across 1 directory with 13 updates#4

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rust-dependencies-ade44d808a
Open

Bump the rust-dependencies group across 1 directory with 13 updates#4
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rust-dependencies-ade44d808a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 28, 2026

Copy link
Copy Markdown

Bumps the rust-dependencies group with 13 updates in the / directory:

Package From To
arc-swap 1.7.1 1.9.1
aya 0.13.1 0.14.0
bytes 1.11.1 1.12.0
compio-buf 0.8.2-rc.1 0.8.3
openraft 0.9.21 0.9.24
quinn 0.11.9 0.11.11
redis 1.2.1 1.3.0
rustls 0.23.37 0.23.41
serde_json 1.0.149 1.0.150
socket2 0.6.3 0.6.4
str0m 0.19.0 0.21.0
rustc-hash 2.1.1 2.1.2
wasmtime 24.0.2 46.0.1

Updates arc-swap from 1.7.1 to 1.9.1

Changelog

Sourced from arc-swap's changelog.

1.9.1

  • One more SeqCst :-| (#204).

1.9.0

  • Promote certain orderings to SeqCst. Original proofs based on wrong reading of standard :-(. Expect some performance degradation (#198, #200).

1.8.2

  • Proper gate of Pin (since 1.39 - we are not using only Pin, but also Pin::into_inner, #197).

1.8.1

  • Some more careful orderings (#195).

1.8.0

  • Support for Pin (#185, #183).
  • Fix (hopefully) crash on ARM (#164).
  • Fix Miri check (#186, #156).
  • Fix support for Rust 1.31.0.
  • Some minor clippy lints.
Commits

Updates aya from 0.13.1 to 0.14.0

Release notes

Sourced from aya's releases.

aya-v0.14.0

Full Changelog: aya-rs/aya@aya-obj-v0.3.0...aya-v0.14.0

Commits
  • 302985c Release aya v0.14.0, aya-build v0.2.0, aya-ebpf-cty v0.3.0, aya-ebpf-bindings...
  • 269dfaf chore: Release aya-obj v0.3.0
  • 168f9c3 chore(public-api): Regenerate
  • 64928dd fix(integration-test): Appease Clippy's future_not_send lint
  • bf18994 fix(aya/test_helpers): Prevent NetNsGuard from crossing threads
  • e2ab3ee fix(aya/test_helpers): Clean up after errors in NetNsGuard::new()
  • 8d1d15b refactor(aya/test_helpers): Return an error instead of panicking
  • 745065a chore(aya/netlink): Add a docstring for NetlinkError::raw_os_error()
  • b9b92ce refactor(test): Move utils.rs from the integration-test crate to aya
  • 996485a doc(test/utils): Add docstrings
  • Additional commits viewable in compare view

Updates bytes from 1.11.1 to 1.12.0

Release notes

Sourced from bytes's releases.

Bytes v1.12.0

1.12.0 (June 18th, 2026)

Added

  • Add BytesMut::extend_from_within() (#818)
  • Add BytesMut::try_unsplit() (#746)

Fixed

  • Fix panic in get_int if nbytes is zero (#806)

Changed

  • Pass vtable data by value (#826)
  • Exclude development scripts from published package (#810)

Documented

  • Document that BytesMut::{reserve,try_reserve} doesn't preserve unused capacity (#808)
Changelog

Sourced from bytes's changelog.

1.12.0 (June 18th, 2026)

Added

  • Add BytesMut::extend_from_within() (#818)
  • Add BytesMut::try_unsplit() (#746)

Fixed

  • Fix panic in get_int if nbytes is zero (#806)

Changed

  • Pass vtable data by value (#826)
  • Exclude development scripts from published package (#810)

Documented

  • Document that BytesMut::{reserve,try_reserve} doesn't preserve unused capacity (#808)
Commits

Updates compio-buf from 0.8.2-rc.1 to 0.8.3

Commits

Updates openraft from 0.9.21 to 0.9.24

Release notes

Sourced from openraft's releases.

v0.9.23

Released: 2026-04-20

This is a bugfix release on the 0.9 line. The headline improvements all center on snapshot replication reliability — a tight loop in the chunk-send retry path that could burn CPU against a flaky follower, a debug-build panic triggered by a harmless race between the engine's snapshot metadata and the state machine, and an example that stopped working on newer toolchains. Upgrading is safe and recommended if you use snapshotting.

Highlights

Snapshot streaming is now bounded and drives forward on stale snapshots

Before this release, Chunked::send_snapshot silently swallowed every transient RPCErrorTimeout, Unreachable, Network, even remote Fatal — and re-entered the loop without advancing the offset. A flaky target could therefore keep re-streaming the same snapshot forever, even after the leader had built a fresher one. The outer hard_ttl timeout expiring also just continued, making a 1 ms per-iteration sleep the only real brake.

v0.9.23 replaces this with an explicit retry policy:

  • Timeout / Network — exponential backoff, 10 ms → 200 ms
  • Unreachable — caller-supplied RaftNetwork::backoff() iterator
  • PayloadTooLarge / remote Fatal — fail fast, propagate upward
  • SnapshotMismatch — reset offset and retry state

After 5 consecutive transient failures, the call returns and the replication layer re-drives with the current (possibly newer) snapshot. An integration test (t91_snapshot_retry_uses_latest_snapshot) exercises this end-to-end.

Commit: 29941565 — thanks to cliff0412.

Inflight snapshot ack tolerates fresher snapshots

A debug-build panic in Inflight::ack could trip when the state machine built a newer snapshot between next_send time and the get_snapshot() call — the shipped snapshot's last_log_id was simply ahead of the one the engine had recorded. The ack check is now upto >= last_log_id instead of strict equality, which still catches real regressions (a follower's matching rolling backward) but no longer panics on the benign TOCTOU race.

Commit: cc6a2cfa.

raft-kv-rocksdb example runs on recent toolchains again

The example serves its HTTP API via tide (on async-std), but Raft methods internally await tokio::time::sleep. Under newer nightly toolchains, polling sleep outside a Tokio runtime started panicking with "there is no reactor running". The example now captures tokio::runtime::Handle::current() at startup and dispatches raft calls via tokio_handle.spawn(...), so the cluster test works again.

Commit: cffb1a99 — cherry-picked from upstream 83c8176e.

Other changes

  • Toolchain: rust-toolchain updated to nightly-2025-10-01; CI lint/fmt/doc errors under the newer nightly resolved.
  • Compatibility: rocksstore-v2 updated for rand 0.9 API (thread_rng()rng()).
  • Tooling: added scripts/publish.sh for release publishing.

Upgrade

[dependencies]
openraft = "0.9.23"

No API changes — drop-in upgrade from 0.9.22.

Full change log

... (truncated)

Commits
  • da1c293 Doc: add change log 0.9.24
  • 58f5629 BumpVer: 0.9.24
  • 253c31c Fix: gate io-state snapshot update on engine snapshot advancement
  • 561b077 Test: regression for duplicate trigger().snapshot() at same last_applied
  • f6c165b Doc: add change log 0.9.23
  • eeda544 BumpVer: 0.9.23
  • 2994156 Fix: bound snapshot chunk retries and propagate stale-snapshot errors
  • cffb1a9 Fix: run raft-kv-rocksdb example APIs on Tokio runtime
  • cc6a2cf Fix: allow newer snapshot in Inflight::Snapshot ack
  • fda35b9 Chore: fix CI lint/fmt/doc errors on newer nightly toolchain
  • Additional commits viewable in compare view

Updates quinn from 0.11.9 to 0.11.11

Release notes

Sourced from quinn's releases.

quinn-proto 0.11.11

What's Changed

Commits
  • a7499b8 Bump versions for release
  • 7c1970f proto: yield error on too many gaps in assembler
  • fe5ac49 congestion: avoid double-reducing CUBIC fast convergence
  • c1e903b fix(quinn): handle overdue timers without polling the async timer
  • b3b20e1 quinn-udp: allow to use windows-sys 0.61
  • 6f03ca3 quinn-proto: drop Initials silently when saturated
  • 41c8527 quinn: fix ref count logic for ConnectionRef and EndpointRef
  • 73ea1dd Remove RecvStreams from blocked_readers on stop
  • cf16bfd Early return in RecvStream::drop()
  • af2e4e5 Fix the (pre-existing) rightward drift by inverting conditions
  • Additional commits viewable in compare view

Updates redis from 1.2.1 to 1.3.0

Release notes

Sourced from redis's releases.

redis-1.3.0

Changes & Bug fixes

Add numbered databases support for the cluster client (redis-rs/redis-rs#2146 by @​virratanasangpunth) fix(cluster): clamp retry backoff upper bound after min-wait floor (redis-rs/redis-rs#2158 by @​nihohit) docs/ci: add wasm32-wasip2 build support for tokio-comp (redis-rs/redis-rs#2153 by @​Prashantsinghchouhan) Add Bloom filter support (redis-rs/redis-rs#2117 by @​somechris)

CI & operational improvements

tests/version: Parse all available versions (Valkey, modules, ...) (Version refactor 6/10) (redis-rs/redis-rs#2143 by @​somechris) tests/version: Add disjunctive (OR) and conjunctive (AND) matchers (Version refactor 7/10) (redis-rs/redis-rs#2144 by @​somechris) tests/version: Drop Redis binary version parsing (Version refactor 8/10) (redis-rs/redis-rs#2145 by @​somechris) tests: Drop VERSION from version constants (version refactor 9/10) (redis-rs/redis-rs#2147 by @​somechris) Fix flakey object tests (redis-rs/redis-rs#2160 by @​nihohit) tests: Add test guards for Valkey servers (Version refactor 10/10) (redis-rs/redis-rs#2148 by @​somechris)

New Contributors

Full Changelog: redis-rs/redis-rs@redis-1.2.4...redis-1.3.0

redis-1.2.4

Changes & Bug fixes

  • cluster: refresh topology and retry on READONLY errors (#2115 by @​alexcole)
  • fix(aio): bound permit allocation by concurrency limit, not pipeline length (#2151 by @​Ali2Arslan)

CI & operational improvements

  • tests/cluster_async: Switch to positive version checking (Version refactor 1/8) (#2138 by @​somechris)
  • tests/basic: Switch version checks to constant (Version refactor 2/8) (#2139 by @​somechris)
  • tests: Split off version code into dedicated module (Version refactor 3/10) (#2140 by @​somechris)
  • tests/version: Add TestClusterVersioning trait for version handling (Version refactor 4/10) (#2141 by @​somechris)
  • tests: Delegate version comparison to TestClusterVersioning (Version refactor 5/10) (#2142 by @​somechris)
  • tests/version: Require ownership to check version support (Version refactor 5b/10) (#2152 by @​somechris)
  • tests: Use server binary from env to detect major version (#2149 by @​somechris)

New Contributors

Full Changelog: redis-rs/redis-rs@redis-1.2.3...redis-1.2.4

redis-1.2.3

Changes & Bug fixes

... (truncated)

Commits
  • 207cc89 Prepare version (#2166)
  • c34fb33 Add redisbloom's Bloom filter support (#2117)
  • 5c6ca0a tests: Add test guards for Valkey servers (#2148)
  • e891f7f docs/ci: add wasm32-wasip2 build support for tokio-comp (#2153)
  • 7d066c6 Fix flakey object tests (#2160)
  • b571eb1 tests: Clean up version constants (#2147)
  • b9249f6 tests/version: Drop Redis binary version parsing (#2145)
  • 406ad76 tests/version: Add disjunctive (OR) and conjunctive (AND) matchers (#2144)
  • 1372807 feat(redis_test): add new commands after mock redis connection is instantiate...
  • 201d1be fix(cluster): clamp retry backoff upper bound after min-wait floor (#2158)
  • Additional commits viewable in compare view

Updates rustls from 0.23.37 to 0.23.41

Commits
  • 642a103 ci: drop Taplo job
  • 752c144 Drop nightly clippy tests
  • 8d8611a Fix new clippy::useless-borrows-in-formatting
  • ebf3297 Fix new clippy::manual_clear
  • 46808e7 ci: sync cargo-check-external-types nightly
  • 041a8d2 Cargo deny: allow RUSTSEC-2026-0173
  • 62e220e Take semver-compatible dependency updates
  • 3c14696 Upgrade to hickory-resolver 0.26
  • 848a2cc connect-tests: delete ech.rs
  • 5ce9cac Bump version to 0.23.41
  • Additional commits viewable in compare view

Updates serde_json from 1.0.149 to 1.0.150

Release notes

Sourced from serde_json's releases.

v1.0.150

Commits
  • a1ae73a Release 1.0.150
  • 1a360b0 Merge pull request #1324 from puneetdixit200/reject-non-string-enum-keys
  • 2037b63 Reject non-string enum object keys
  • 5d30df6 Resolve manual_assert_eq pedantic clippy lint
  • dc8003a Raise required compiler for preserve_order feature to 1.85
  • a42fa98 Unpin CI miri toolchain
  • 684a60e Pin CI miri to nightly-2026-02-11
  • 7c7da33 Raise required compiler to Rust 1.71
  • acf4850 Simplify Number::is_f64
  • 6b8ceab Resolve unnecessary_map_or clippy lint
  • Additional commits viewable in compare view

Updates socket2 from 0.6.3 to 0.6.4

Changelog

Sourced from socket2's changelog.

0.6.4

Commits

Updates str0m from 0.19.0 to 0.21.0

Changelog

Sourced from str0m's changelog.

0.21.0

  • Upgrade to dimpl 0.7.0 (breaking)
  • Handle SctpAssociation as Event::Closed #986
  • Reject SDP payload types > 127 instead of panicking when claiming PTs #983
  • Add RTCP PSFB FMT=15 (AppSpecificFeedback) send/receive via Direct API #981
  • Add H266/VVC RTP packetizer and depacketizer #971
  • Negotiate SCTP max message size for data channels #852
  • Expose the negotiated DTLS protocol version #979
  • Make MTU size configurable #967
  • Add optional drv feature for using public identity types as drv::Input #974 #975
  • Send DTLS close_notify on Rtc::close() #956
  • Fix Simulcast::add_recv_layer to push to recv instead of send #968
  • Accept any non-empty SDP session name (s=), not just s=- #969

0.20.0

  • Update dimpl to 0.6.2 and sctp-proto to 0.9.1
  • Fix repeated rx lookup cleanup bug #965
  • Fix permissive vp8 depacketizer for invalid l=1,t=0 cases (breaking) #963
  • Add VP8 descriptor parsing and vp8_patch() to RtpWrite #963
  • write_rtp() now takes a RtpWrite builder (breaking) #963
  • Add abs-capture-time writer support and fixed receiver-side (breaking) #964
  • Add stereo to opus format params #955
  • Use Arc<[u8]> as input/output of media data (breaking) #959

is-0.9.1

  • Expose ICE candidate pair RTT in CandidatePairStats #962
Commits

Updates rustc-hash from 2.1.1 to 2.1.2

Changelog

Sourced from rustc-hash's changelog.

2.1.2

Commits
  • fdb275c Merge pull request #67 from Noratrieb/new-version
  • acafa43 Prepare 2.1.2
  • 140e525 Merge pull request #65 from morrisonlevi/split_first_chunk
  • f061387 style: use consistent range format
  • 211455c refactor!: use split_first_chunk to help optimizer
  • 464a82f Merge pull request #63 from estebank/const-Default
  • 2170d5e On nightly, impl const Default
  • 1a998d5 Merge pull request #62 from CryZe/128-bit-on-more-platforms
  • 6849c16 Use 128-bit Widening Multiply on More Platforms
  • See full diff in compare view

Updates wasmtime from 24.0.2 to 46.0.1

Release notes

Sourced from wasmtime's releases.

v46.0.1

46.0.1

Released 2026-06-24.

Fixed

  • WASI hard links and renames check wasmtime-wasi's FilePerms for destination GHSA-4ch3-9j33-3pmj
  • Explicit hint for generic call in wasmtime wit-bindgen. #13719

v46.0.0

46.0.0

Released 2026-06-22.

Added

  • Added opt-in support for the WebAssembly branch-hinting proposal: the metadata.code.branch_hint custom section is parsed and used to mark cold blocks during Cranelift compilation, behind Config::wasm_branch_hinting (off by default). #13459

  • Wasmtime's C API now supports type reflection of GC values. #13268

  • Wasmtime now supports being compiled to arm64_32 platforms. #13259

  • The cranelift-frontend crate,the RISC-V Cranelift backend, and Wasmtime's component-model-async feature now support no_std. #13401 #13479 #13533

  • Wasmtime has initial support for the component model (implements "...") feature. #13361 #13497 #13513

  • The wasmtime CLI now supports configuring the initial-cwd property of WASI. #13468

  • The wasmtime serve subcommand now supports --header to set headers for the

... (truncated)

Changelog

Sourced from wasmtime's changelog.

46.0.1

Released 2026-06-24.

Fixed

  • WASI hard links and renames check wasmtime-wasi's FilePerms for destination GHSA-4ch3-9j33-3pmj
  • Explicit hint for generic call in wasmtime wit-bindgen. #13719

46.0.0

Released 2026-06-22.

Added

  • Added opt-in support for the WebAssembly branch-hinting proposal: the metadata.code.branch_hint custom section is parsed and used to mark cold blocks during Cranelift compilation, behind Config::wasm_branch_hinting (off by default). #13459

  • Wasmtime's C API now supports type reflection of GC values. #13268

  • Wasmtime now supports being compiled to arm64_32 platforms. #13259

  • The cranelift-frontend crate,the RISC-V Cranelift backend, and Wasmtime's component-model-async feature now support no_std. #13401 #13479 #13533

  • Wasmtime has initial support for the component model (implements "...") feature. #13361 #13497 #13513

  • The wasmtime CLI now supports configuring the initial-cwd property of WASI. #13468

  • The wasmtime serve subcommand now supports --header to set headers for the guest.

... (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 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 rust-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [arc-swap](https://github.com/vorner/arc-swap) | `1.7.1` | `1.9.1` |
| [aya](https://github.com/aya-rs/aya) | `0.13.1` | `0.14.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.11.1` | `1.12.0` |
| [compio-buf](https://github.com/compio-rs/compio) | `0.8.2-rc.1` | `0.8.3` |
| [openraft](https://github.com/databendlabs/openraft) | `0.9.21` | `0.9.24` |
| [quinn](https://github.com/quinn-rs/quinn) | `0.11.9` | `0.11.11` |
| [redis](https://github.com/redis-rs/redis-rs) | `1.2.1` | `1.3.0` |
| [rustls](https://github.com/rustls/rustls) | `0.23.37` | `0.23.41` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.149` | `1.0.150` |
| [socket2](https://github.com/rust-lang/socket2) | `0.6.3` | `0.6.4` |
| [str0m](https://github.com/algesten/str0m) | `0.19.0` | `0.21.0` |
| [rustc-hash](https://github.com/rust-lang/rustc-hash) | `2.1.1` | `2.1.2` |
| [wasmtime](https://github.com/bytecodealliance/wasmtime) | `24.0.2` | `46.0.1` |



Updates `arc-swap` from 1.7.1 to 1.9.1
- [Changelog](https://github.com/vorner/arc-swap/blob/master/CHANGELOG.md)
- [Commits](vorner/arc-swap@v1.7.1...v1.9.1)

Updates `aya` from 0.13.1 to 0.14.0
- [Release notes](https://github.com/aya-rs/aya/releases)
- [Changelog](https://github.com/aya-rs/aya/blob/main/RELEASE.md)
- [Commits](aya-rs/aya@aya-v0.13.1...aya-v0.14.0)

Updates `bytes` from 1.11.1 to 1.12.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.11.1...v1.12.0)

Updates `compio-buf` from 0.8.2-rc.1 to 0.8.3
- [Release notes](https://github.com/compio-rs/compio/releases)
- [Changelog](https://github.com/compio-rs/compio/blob/master/release-plz.toml)
- [Commits](https://github.com/compio-rs/compio/commits)

Updates `openraft` from 0.9.21 to 0.9.24
- [Release notes](https://github.com/databendlabs/openraft/releases)
- [Commits](databendlabs/openraft@v0.9.21...v0.9.24)

Updates `quinn` from 0.11.9 to 0.11.11
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-0.11.9...quinn-0.11.11)

Updates `redis` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-1.2.1...redis-1.3.0)

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

Updates `serde_json` from 1.0.149 to 1.0.150
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.149...v1.0.150)

Updates `socket2` from 0.6.3 to 0.6.4
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/socket2/commits)

Updates `str0m` from 0.19.0 to 0.21.0
- [Changelog](https://github.com/algesten/str0m/blob/main/CHANGELOG.md)
- [Commits](algesten/str0m@0.19.0...0.21.0)

Updates `rustc-hash` from 2.1.1 to 2.1.2
- [Changelog](https://github.com/rust-lang/rustc-hash/blob/master/CHANGELOG.md)
- [Commits](rust-lang/rustc-hash@v2.1.1...v2.1.2)

Updates `wasmtime` from 24.0.2 to 46.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v46.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v24.0.2...v46.0.1)

---
updated-dependencies:
- dependency-name: arc-swap
  dependency-version: 1.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: aya
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: bytes
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: compio-buf
  dependency-version: 0.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: openraft
  dependency-version: 0.9.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: quinn
  dependency-version: 0.11.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: redis
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: rustls
  dependency-version: 0.23.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_json
  dependency-version: 1.0.150
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: socket2
  dependency-version: 0.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: str0m
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: rustc-hash
  dependency-version: 2.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: wasmtime
  dependency-version: 46.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-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 Jun 28, 2026
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