Skip to content

Bump the cargo group across 3 directories with 18 updates - #49

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/cargo-3d5a8c7d4c
Open

Bump the cargo group across 3 directories with 18 updates#49
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/cargo-3d5a8c7d4c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 23, 2026

Copy link
Copy Markdown

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

Package From To
rand 0.7.3 0.8.5
borsh 0.9.3 0.10.4
tokio 1.14.1 1.26.0
tar 0.4.38 0.4.45
tungstenite 0.17.3 0.20.1
ouroboros 0.15.0 0.15.6
bytes 1.2.1 1.11.1
openssl 0.10.41 0.10.68
quinn-proto 0.8.4 0.10.6
users 0.10.0 0.11.0
h2 0.3.11 0.3.27
keccak 0.1.0 0.1.6
shlex 1.1.0 1.3.0
time 0.1.43 0.1.45
tracing-subscriber 0.3.7 0.3.23
unsafe-libyaml 0.2.4 0.2.11

Bumps the cargo group with 10 updates in the /programs/sbf directory:

Package From To
rand 0.7.3 0.8.5
tar 0.4.38 0.4.45
ouroboros 0.15.0 0.15.6
bytes 1.2.1 1.11.1
openssl 0.10.41 0.10.68
h2 0.3.11 0.3.21
keccak 0.1.0 0.1.6
remove_dir_all 0.5.2 0.5.3
shlex 1.1.0 1.3.0
unsafe-libyaml 0.2.4 0.2.11

Bumps the cargo group with 1 update in the /storage-bigtable/build-proto directory: bytes.

Updates rand from 0.7.3 to 0.8.5

Changelog

Sourced from rand's changelog.

[0.8.5] - 2021-08-20

Fixes

  • Fix build on non-32/64-bit architectures (#1144)
  • Fix "min_const_gen" feature for no_std (#1173)
  • Check libc::pthread_atfork return value with panic on error (#1178)
  • More robust reseeding in case ReseedingRng is used from a fork handler (#1178)
  • Fix nightly: remove unused slice_partition_at_index feature (#1215)
  • Fix nightly + simd_support: update packed_simd (#1216)

Rngs

  • StdRng: Switch from HC128 to ChaCha12 on emscripten (#1142). We now use ChaCha12 on all platforms.

Documentation

  • Added docs about rand's use of const generics (#1150)
  • Better random chars example (#1157)

#1142: rust-random/rand#1142 #1144: rust-random/rand#1144 #1150: rust-random/rand#1150 #1157: rust-random/rand#1157 #1173: rust-random/rand#1173 #1178: rust-random/rand#1178 #1215: rust-random/rand#1215 #1216: rust-random/rand#1216

[0.8.4] - 2021-06-15

Additions

  • Use const-generics to support arrays of all sizes (#1104)
  • Implement Clone and Copy for Alphanumeric (#1126)
  • Add Distribution::map to derive a distribution using a closure (#1129)
  • Add Slice distribution (#1107)
  • Add DistString trait with impls for Standard and Alphanumeric (#1133)

Other

  • Reorder asserts in Uniform float distributions for easier debugging of non-finite arguments (#1094, #1108)
  • Add range overflow check in Uniform float distributions (#1108)
  • Deprecate rngs::adapter::ReadRng (#1130)

[0.8.3] - 2021-01-25

Fixes

  • Fix no-std + alloc build by gating choose_multiple_weighted on std (#1088)

[0.8.2] - 2021-01-12

Fixes

  • Fix panic in UniformInt::sample_single_inclusive and Rng::gen_range when providing a full integer range (eg 0..=MAX) (#1087)

... (truncated)

Commits
  • 937320c Update CHANGELOG for 0.8.5 (#1221)
  • 2924af6 Merge pull request #1183 from vks/fill-float-doc
  • dbbc1bf Merge pull request #1218 from Will-Low/master
  • 9f20df0 Making distributions comparable by deriving PartialEq. Tests included
  • a407bdf Merge pull request #1216 from rust-random/work5
  • d3ca11b Update to packed_simd_2 0.3.7
  • fa04c15 Merge pull request #1215 from Lantern-chat/master
  • 73f8ffd Remove unused slice_partition_at_index feature
  • 8f37250 Merge pull request #1208 from newpavlov/rand_distr/fix_no_std
  • 9ef737b update changelog
  • Additional commits viewable in compare view

Updates borsh from 0.9.3 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

[0.10.2] - 2022-02-14

  • Prevent unbound allocation for vectors on deserialization

[0.10.1] - 2022-02-08

  • Implemented (de)ser for core::ops::range
  • Introduce de::EnumExt trait with deserialize_variant method

[0.10.0] - 2023-01-19

  • Fix no-std feature (some of the imports incorrectly used std:: instead of crate::maybestd::)
  • Fix borsh-schema derives with for bounds
  • Implemented BorshSchema for HashSet
  • Add support for isize, usize types
  • Delete schema for char
  • Implement ser/de and schema for (T,)
  • Add clone impls to borsh schema types
  • Remove unnecessary trait bounds requirements for array
  • BREAKING CHANGE: BorshDeserialize now works by receiving an &mut std::io::Read instead of a &mut &[u8]. This is a breaking change for code that provides custom implementations of BorshDeserialize; there is no impact on code that uses only the derive macro.
  • Added BorshDeserialize::try_from_reader and BorshDeserialize::deserialize_reader.
  • Upgrade hashbrown version to be >=0.11,<0.14 to allow wider range of versions.
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)
  • 9e68316 release: Prepare for 0.10.2 release (#130)
  • d431291 feat(deserialize): prevent unbound allocation (#129)
  • d915ab5 chore: Updated Minimum Supported Rust Version to 1.55 (manually confirmed wit...
  • Additional commits viewable in compare view

Updates tokio from 1.14.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 tar from 0.4.38 to 0.4.45

Commits
  • 096e3d1 Bump to 0.4.45 (#443)
  • 17b1fd8 archive: Prevent symlink-directory collision chmod attack (#442)
  • de1a587 archive: Unconditionally honor PAX size (#441)
  • 6071cbe ci: Consolidate workflows (#439)
  • ad1fde9 build-sys: Promote unused_code to an error
  • c8cb250 tests: Squash a warning
  • 638c495 ci: Add xtask infra + reverse dependency testing (#435)
  • 32a9bbb tests: Add RandomReader to exercise partial-read resilience (#436)
  • 9c5df0b Fix GNU long-name extension stream corruption on validation error (#434)
  • 88b1e3b Fix docs typo in header.rs (#431)
  • Additional commits viewable in compare view

Updates tungstenite from 0.17.3 to 0.20.1

Changelog

Sourced from tungstenite's changelog.

0.20.1

0.20.0

  • Remove many implicit flushing behaviours. In general reading and writing messages will no longer flush until calling flush. An exception is automatic responses (e.g. pongs) which will continue to be written and flushed when reading and writing. This allows writing a batch of messages and flushing once, improving performance.
  • Add WebSocket::read, write, send, flush. Deprecate read_message, write_message, write_pending.
  • Add FrameSocket::read, write, send, flush. Remove read_frame, write_frame, write_pending. Note: Previous use of write_frame may be replaced with send.
  • Add WebSocketContext::read, write, flush. Remove read_message, write_message, write_pending. Note: Previous use of write_message may be replaced with write + flush.
  • Remove send_queue, replaced with using the frame write buffer to achieve similar results.
    • Add WebSocketConfig::max_write_buffer_size. Deprecate max_send_queue.
    • Add Error::WriteBufferFull. Remove Error::SendQueueFull. Note: WriteBufferFull returns the message that could not be written as a Message::Frame.
  • Add ability to buffer multiple writes before writing to the underlying stream, controlled by WebSocketConfig::write_buffer_size (default 128 KiB). Improves batch message write performance.
  • Panic on receiving invalid WebSocketConfig.

0.19.0

  • Update TLS dependencies.
  • Exchanging base64 for data-encoding.

0.18.0

  • Make handshake dependencies optional with a new handshake feature (now a default one!).
  • Return HTTP error responses (their HTTP body) upon non 101 status codes.
Commits

Updates ouroboros from 0.15.0 to 0.15.6

Commits

Updates bytes from 1.2.1 to 1.11.1

Release notes

Sourced from bytes's releases.

Bytes v1.11.1

1.11.1 (February 3rd, 2026)

  • Fix integer overflow in BytesMut::reserve

Bytes v1.11.0

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)

Bytes v1.10.1

1.10.1 (March 5th, 2025)

Fixed

  • Fix memory leak when using to_vec with Bytes::from_owner (#773)

#773: tokio-rs/bytes#773

Bytes v1.10.0

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)

... (truncated)

Changelog

Sourced from bytes's changelog.

1.11.1 (February 3rd, 2026)

  • Fix integer overflow in BytesMut::reserve

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)

1.10.1 (March 5th, 2025)

Fixed

  • Fix memory leak when using to_vec with Bytes::from_owner (#773)

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

... (truncated)

Commits

Updates openssl from 0.10.41 to 0.10.68

Release notes

Sourced from openssl's releases.

openssl-v0.10.68

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.67...openssl-v0.10.68

openssl-v0.10.67

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.66...openssl-v0.10.67

openssl-v0.10.66

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.65...openssl-v0.10.66

openssl-v0.10.65

... (truncated)

Commits
  • be8dcfd Merge pull request #2318 from alex/msrv-fix
  • 065cc77 fixes #2317 -- restore compatibility with our MSRV and release openssl 0.9.68
  • 7b3ec80 Merge pull request #2316 from alex/bump-for-release
  • b510e8c Release openssl v0.10.67 and openssl-sys v0.9.104
  • ee3b024 Merge pull request #2315 from botovq/libressl-4.0.0
  • c4dabc2 CI: Update LibreSSL CI
  • f9027b7 LibreSSL 4.0.0 is released & stable
  • 1b51ba5 Merge pull request #2313 from sfackler/sfackler-patch-1
  • de8a97c Bump to 3.4.0-beta1
  • 3930464 Merge pull request #2312 from sfackler/alex-patch-1
  • Additional commits viewable in compare view

Updates quinn-proto from 0.8.4 to 0.10.6

Release notes

Sourced from quinn-proto's releases.

quinn-proto 0.11.13, quinn 0.11.9

What's Changed

quinn-proto 0.11.10, quinn 0.11.7

Fixes potential issues building rustls-platform-verifier 0.4.x with rustls 0.23.24 and newer by upgrading to rustls-platform-verifier 0.5.x. Also contains a large number of small bug fixes and improvements and (hopefully) fixes the broken docs on docs.rs.

We added @​gretchenfrage as a maintainer, thanks for all your contributions so far and hope for many more!

What's Changed

... (truncated)

Commits
  • db2df61 Bump quinn-proto version
  • 8d07b88 Downgrade duplicate packet message to debug level
  • bd171f8 Set workspace resolver explicitly
  • 60da97e Avoid redundant link target in docs
  • d8b016c Use or_default() as suggested by clippy
  • da2e193 Silence clippy false positive
  • fbd1c6c Don't pre-allocate memory for every possible stream per connection
  • f659258 streams: extract max_send_data() helper
  • 53830b6 Bump quinn-proto version to 0.10.5
  • c31f62b More principled error handling for invalid frames
  • Additional commits viewable in compare view

Updates users from 0.10.0 to 0.11.0

Release notes

Sourced from users's releases.

v0.11.0

Breaking changes

  • Certain functions now return Arc<OsStr> rather than Arc<OsString>

Bug fixes and other changes

  • Retry lookups with larger buffer sizes on ERANGE error condition (#38)
  • Switch logging to use Trace level rather than Debug (#39)
Commits
  • d6883b4 v0.11.0
  • f12df3b Add MSRV badge
  • 092ffe3 Run all feature tests on CI, too
  • d705de3 Use cargo-hack to test all feature combinations
  • cde6740 Continue using the Entry API... for now
  • af2d86a Use Arc<OsStr> to avoid double redirection
  • 5765d03 Fix doctest warnings
  • 16de943 Add a Justfile
  • 4b927ff Merge pull request #38 from Freaky/handle-erange
  • 0bfda43 Merge pull request #39 from intgr/log-level-trace
  • Additional commits viewable in compare view

Updates h2 from 0.3.11 to 0.3.27

Release notes

Sourced from h2's releases.

v0.3.26

What's Changed

  • Limit number of CONTINUATION frames for misbehaving connections.

See https://seanmonstar.com/blog/hyper-http2-continuation-flood/ for more info.

v0.3.25

What's Changed

Full Changelog: hyperium/h2@v0.3.24...v0.3.25

v0.3.24

Fixed

  • Limit error resets for misbehaving connections.

v0.3.23

What's Changed

v0.3.22

What's Changed

  • Add header_table_size(usize) option to client and server builders.
  • Improve throughput when vectored IO is not available.
  • Update indexmap to 2.

New Contributors

v0.3.21

What's Changed

  • Fix opening of new streams over peer's max concurrent limit.
  • Fix RecvStream to return data even if it has received a CANCEL stream error.
  • Update MSRV to 1.63.

New Contributors

v0.3.20

Bug Fixes

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

| Package | From | To |
| --- | --- | --- |
| [rand](https://github.com/rust-random/rand) | `0.7.3` | `0.8.5` |
| [borsh](https://github.com/near/borsh-rs) | `0.9.3` | `0.10.4` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.14.1` | `1.26.0` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.38` | `0.4.45` |
| [tungstenite](https://github.com/snapview/tungstenite-rs) | `0.17.3` | `0.20.1` |
| [ouroboros](https://github.com/someguynamedjosh/ouroboros) | `0.15.0` | `0.15.6` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.2.1` | `1.11.1` |
| [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.41` | `0.10.68` |
| [quinn-proto](https://github.com/quinn-rs/quinn) | `0.8.4` | `0.10.6` |
| [users](https://github.com/ogham/rust-users) | `0.10.0` | `0.11.0` |
| [h2](https://github.com/hyperium/h2) | `0.3.11` | `0.3.27` |
| [keccak](https://github.com/RustCrypto/sponges) | `0.1.0` | `0.1.6` |
| [shlex](https://github.com/comex/rust-shlex) | `1.1.0` | `1.3.0` |
| [time](https://github.com/time-rs/time) | `0.1.43` | `0.1.45` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.7` | `0.3.23` |
| [unsafe-libyaml](https://github.com/dtolnay/unsafe-libyaml) | `0.2.4` | `0.2.11` |

Bumps the cargo group with 10 updates in the /programs/sbf directory:

| Package | From | To |
| --- | --- | --- |
| [rand](https://github.com/rust-random/rand) | `0.7.3` | `0.8.5` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.38` | `0.4.45` |
| [ouroboros](https://github.com/someguynamedjosh/ouroboros) | `0.15.0` | `0.15.6` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.2.1` | `1.11.1` |
| [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.41` | `0.10.68` |
| [h2](https://github.com/hyperium/h2) | `0.3.11` | `0.3.21` |
| [keccak](https://github.com/RustCrypto/sponges) | `0.1.0` | `0.1.6` |
| [remove_dir_all](https://github.com/XAMPPRocky/remove_dir_all) | `0.5.2` | `0.5.3` |
| [shlex](https://github.com/comex/rust-shlex) | `1.1.0` | `1.3.0` |
| [unsafe-libyaml](https://github.com/dtolnay/unsafe-libyaml) | `0.2.4` | `0.2.11` |

Bumps the cargo group with 1 update in the /storage-bigtable/build-proto directory: [bytes](https://github.com/tokio-rs/bytes).


Updates `rand` from 0.7.3 to 0.8.5
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.7.3...0.8.5)

Updates `borsh` from 0.9.3 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.9.3...borsh-v0.10.4)

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

Updates `tar` from 0.4.38 to 0.4.45
- [Commits](composefs/tar-rs@0.4.38...0.4.45)

Updates `tungstenite` from 0.17.3 to 0.20.1
- [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md)
- [Commits](snapview/tungstenite-rs@v0.17.3...v0.20.1)

Updates `ouroboros` from 0.15.0 to 0.15.6
- [Commits](https://github.com/someguynamedjosh/ouroboros/commits)

Updates `bytes` from 1.2.1 to 1.11.1
- [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.2.1...v1.11.1)

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

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

Updates `users` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/ogham/rust-users/releases)
- [Commits](ogham/rust-users@v0.10.0...v0.11.0)

Updates `h2` from 0.3.11 to 0.3.27
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/v0.3.27/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.11...v0.3.27)

Updates `keccak` from 0.1.0 to 0.1.6
- [Commits](RustCrypto/sponges@keccak-v0.1.0...keccak-v0.1.6)

Updates `mio` from 0.7.14 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.7.14...v0.8.11)

Updates `shlex` from 1.1.0 to 1.3.0
- [Changelog](https://github.com/comex/rust-shlex/blob/master/CHANGELOG.md)
- [Commits](comex/rust-shlex@1.1.0...1.3.0)

Updates `time` from 0.1.43 to 0.1.45
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](https://github.com/time-rs/time/commits)

Updates `tracing-subscriber` from 0.3.7 to 0.3.23
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.7...tracing-subscriber-0.3.23)

Updates `unsafe-libyaml` from 0.2.4 to 0.2.11
- [Release notes](https://github.com/dtolnay/unsafe-libyaml/releases)
- [Commits](dtolnay/unsafe-libyaml@0.2.4...0.2.11)

Updates `rand` from 0.7.3 to 0.8.5
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.7.3...0.8.5)

Updates `tar` from 0.4.38 to 0.4.45
- [Commits](composefs/tar-rs@0.4.38...0.4.45)

Updates `ouroboros` from 0.15.0 to 0.15.6
- [Commits](https://github.com/someguynamedjosh/ouroboros/commits)

Updates `bytes` from 1.2.1 to 1.11.1
- [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.2.1...v1.11.1)

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

Updates `h2` from 0.3.11 to 0.3.21
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/v0.3.27/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.11...v0.3.27)

Updates `keccak` from 0.1.0 to 0.1.6
- [Commits](RustCrypto/sponges@keccak-v0.1.0...keccak-v0.1.6)

Updates `remove_dir_all` from 0.5.2 to 0.5.3
- [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.5.2...remove_dir_all@0.5.3)

Updates `shlex` from 1.1.0 to 1.3.0
- [Changelog](https://github.com/comex/rust-shlex/blob/master/CHANGELOG.md)
- [Commits](comex/rust-shlex@1.1.0...1.3.0)

Updates `unsafe-libyaml` from 0.2.4 to 0.2.11
- [Release notes](https://github.com/dtolnay/unsafe-libyaml/releases)
- [Commits](dtolnay/unsafe-libyaml@0.2.4...0.2.11)

Updates `bytes` from 1.2.1 to 1.11.1
- [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.2.1...v1.11.1)

---
updated-dependencies:
- dependency-name: rand
  dependency-version: 0.8.5
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: borsh
  dependency-version: 0.10.4
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.26.0
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: tar
  dependency-version: 0.4.45
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: tungstenite
  dependency-version: 0.20.1
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: ouroboros
  dependency-version: 0.15.6
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: bytes
  dependency-version: 1.11.1
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: openssl
  dependency-version: 0.10.68
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: quinn-proto
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: users
  dependency-version: 0.11.0
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: h2
  dependency-version: 0.3.27
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: keccak
  dependency-version: 0.1.6
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: mio
  dependency-version: 0.8.11
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: shlex
  dependency-version: 1.3.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: time
  dependency-version: 0.1.45
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tracing-subscriber
  dependency-version: 0.3.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: unsafe-libyaml
  dependency-version: 0.2.11
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rand
  dependency-version: 0.8.5
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: tar
  dependency-version: 0.4.45
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ouroboros
  dependency-version: 0.15.6
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: bytes
  dependency-version: 1.11.1
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: openssl
  dependency-version: 0.10.68
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: h2
  dependency-version: 0.3.21
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: keccak
  dependency-version: 0.1.6
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: remove_dir_all
  dependency-version: 0.5.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: shlex
  dependency-version: 1.3.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: unsafe-libyaml
  dependency-version: 0.2.11
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: bytes
  dependency-version: 1.11.1
  dependency-type: indirect
  dependency-group: cargo
...

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 Apr 23, 2026
@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

🟢 Metrics 0 duplication

Metric Results
Duplication 0

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes. Give us feedback

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