Skip to content

deps(deps): bump the cargo-deps group across 1 directory with 19 updates#3871

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-deps-23ef47de1a
Open

deps(deps): bump the cargo-deps group across 1 directory with 19 updates#3871
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-deps-23ef47de1a

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the cargo-deps group with 19 updates in the / directory:

Package From To
actix-web 4.13.0 4.14.0
aes 0.9.0 0.9.1
async-nats 0.48.0 0.49.1
bitvec 1.0.1 1.1.1
bytes 1.11.1 1.12.0
bytesize 2.3.1 2.4.0
cc 1.2.62 1.2.65
console 0.15.11 0.16.3
futures-timer 3.0.3 3.0.4
jsonrpsee 0.24.10 0.24.11
log 0.4.29 0.4.33
mimalloc 0.1.50 0.1.52
rand 0.8.5 0.8.6
serde_json 1.0.149 1.0.150
spin 0.10.0 0.12.0
thread-priority 3.0.0 3.1.1
x509-parser 0.17.0 0.18.1
zeroize 1.8.2 1.9.0
ziggy 1.7.0 1.7.1

Updates actix-web from 4.13.0 to 4.14.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.14.0

4.14.0

  • Add HttpRequest::{cookies_raw,cookie_raw} and ServiceRequest::{cookies_raw,cookie_raw} for reading request cookies without percent-decoding names and values. #3542
  • Enable dual-stack IPv6 sockets on Windows when possible so that Actix-created listeners bound to [::] also accept IPv4 connections.
  • Panic when calling Route::to() or Route::service() after Route::wrap() to prevent silently dropping route middleware. #3944
  • Fix HttpRequest::{match_pattern,match_name} reporting path-only matches when route guards disambiguate overlapping resources. #3346
  • Fix Readlines handling of lines split across payload chunks so combined line limits are enforced and complete lines are yielded.
  • Fix app data being retained after graceful shutdown with in-flight slow request bodies. #3100
  • Update foldhash dependency to 0.2.
  • Update rand dependency to 0.10.
  • Update impl-more dependency to 0.3.
  • Add HttpServer::h1_write_buffer_size().

#3944: actix/actix-web#3944 #3346: actix/actix-web#3346 #3542: actix/actix-web#3542 #3100: actix/actix-web#3100

Commits
  • 696b1fe chore(web): prepare 4.14.0 release (#4114)
  • 6c65c46 chore(http): prepare 3.13.0 release (#4112)
  • afd2df2 test(multipart,derive): move trybuild tests (#4028)
  • 7ded7ee build(deps): bump memchr from 2.8.1 to 2.8.2 (#4107)
  • 55cf2e0 build(deps): bump bytesize from 2.3.1 to 2.4.0 (#4104)
  • 565b179 build(deps): bump smallvec from 1.15.1 to 1.15.2 (#4106)
  • 1605dd0 build(deps): bump taiki-e/install-action from 2.81.7 to 2.81.10 (#4105)
  • 5c79f55 build(deps): bump regex from 1.12.3 to 1.12.4 (#4103)
  • 2ffbee0 build(deps): bump time from 0.3.47 to 0.3.49 (#4102)
  • 4748b2a build(deps): bump actions/checkout from 6.0.2 to 6.0.3 (#4092)
  • Additional commits viewable in compare view

Updates aes from 0.9.0 to 0.9.1

Commits

Updates async-nats from 0.48.0 to 0.49.1

Release notes

Sourced from async-nats's releases.

async-nats/v0.49.1

Overview

Release focusing on fixing behaviour around server connectivity.

What's Changed

Full Changelog: nats-io/nats.rs@async-nats/v0.49.0...async-nats/v0.49.1

async-nats/v0.49.0

Overview

This is a small release adding missing client-side max-payload validations for some methods. It is a minor release as it adds new error kind variants for relevant calls.

What's Changed

New Contributors

Full Changelog: nats-io/nats.rs@async-nats/v0.48.0...async-nats/v0.49.0

Commits
  • 6ee5d0a Release v0.49.1
  • 5bb316a Fix recreating ordered consumer on server restart
  • e09dce8 Enable auto-reviews only for write-access
  • a1b29be Fix ping interval reset
  • 6043482 Release v0.49.0
  • 337dfac Add max payload validation where it was missing
  • 01fb358 Add TryFrom impls for HeaderName
  • 1ec5724 Add more new docs examples
  • See full diff in compare view

Updates bitvec from 1.0.1 to 1.1.1

Changelog

Sourced from bitvec's changelog.

Changelog

All notable changes will be documented in this file.

This document is written according to the [Keep a Changelog][kac] style.

  1. Version 1
    1. 1.1.0
    2. 1.0.1
    3. 1.0.0
  2. Version 0 (https://github.com/ferrilab/bitvec/blob/main/Prototyping)
    1. 0.22
    2. 0.21
    3. 0.20
    4. 0.19
    5. 0.18
    6. 0.17
    7. 0.16
    8. 0.15
    9. 0.14
    10. 0.13
    11. 0.12
    12. 0.11
    13. 0.10
    14. 0.9
    15. 0.8
    16. 0.7
    17. 0.6
    18. 0.5
    19. 0.4
    20. 0.3
    21. 0.2
    22. 0.1

Version 1

bitvec’s initial development is now complete, and uses the one-dot series. It will continue to receive maintenance, but its API is now stable and will not change until const-generics allow BitArray to be rewritten.

1.1.0

The BitSlice::shift_{left,right} functions have been renamed to BitSlice::shift_{start,end} to try to better reflect their behavior. These functions move data relative to the index as defined by the O: BitOrder type parameter, not according to the processor lsl and lsr instructions.

Commits

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 bytesize from 2.3.1 to 2.4.0

Release notes

Sourced from bytesize's releases.

bytesize: v2.4.0

  • Implement Sum for ByteSize.
  • Minimum supported Rust version (MSRV) is now 1.85.
Changelog

Sourced from bytesize's changelog.

2.4.0

  • Implement Sum for ByteSize.
  • Minimum supported Rust version (MSRV) is now 1.85.
Commits
  • ebf8ed3 chore: release v2.4.0 (#161)
  • 2a1423f feat: implement Sum for ByteSize (#169)
  • b2b22f3 ci: pin actions
  • 3c02c4c chore: update msrv to 1.85
  • 227baa7 chore(deps): bump rand from 0.10.0 to 0.10.1 (#162)
  • 9a4a9c7 chore(deps): bump toml from 1.0.6+spec-1.1.0 to 1.1.2+spec-1.1.0 (#160)
  • b695837 chore(deps): bump taiki-e/install-action from 2.70.3 to 2.75.27 (#158)
  • 94e559a chore(deps): bump actions-rust-lang/setup-rust-toolchain (#159)
  • 1cacb79 chore(deps): bump actions-rust-lang/setup-rust-toolchain (#151)
  • ed48c91 chore(deps): bump taiki-e/install-action from 2.68.15 to 2.70.3 (#150)
  • Additional commits viewable in compare view

Updates cc from 1.2.62 to 1.2.65

Release notes

Sourced from cc's releases.

cc-v1.2.65

Other

  • Regenerate target info (#1763)

cc-v1.2.64

Other

  • Add more bare-metal 32-bit Arm support (#1753)
  • Remove unnecessary clone (#1748)
  • Add default compiler prefixes for thumbv7a/thumbv7r/thumbv8r bare-metal targets (#1742)

cc-v1.2.63

Other

  • Update shlex requirement from 1.3.0 to 2.0.1 (#1736)
Changelog

Sourced from cc's changelog.

1.2.65 - 2026-06-19

Other

  • Regenerate target info (#1763)

1.2.64 - 2026-06-12

Other

  • Add more bare-metal 32-bit Arm support (#1753)
  • Remove unnecessary clone (#1748)
  • Add default compiler prefixes for thumbv7a/thumbv7r/thumbv8r bare-metal targets (#1742)

1.2.63 - 2026-05-29

Other

  • Update shlex requirement from 1.3.0 to 2.0.1 (#1736)
Commits

Updates console from 0.15.11 to 0.16.3

Release notes

Sourced from console's releases.

0.16.3

What's Changed

0.16.2

What's Changed

0.16.1

What's Changed

0.16.0

What's Changed

The 0.15.12 release was yanked after it turned out to be semver-incompatible with existing usage by several of the most popular dependent crates, because it introduced a std feature -- and those crates used default-features = false but relied on the std-guarded features.

The 0.16.0 API should be semver-compatible with the 0.15.x API except for the need for the std feature.

Refer to the 0.15.12 release notes for more information.

0.15.12

What's Changed

Commits
  • 70ea3d0 Bump version to 0.16.3
  • 6bd8894 Remove make msrv-lock
  • 499e5f6 Use std::sync::OnceLock instead of once_cell
  • 0bf645d Bump version
  • 0b789b9 Fix clippy warnings
  • bb1cbdb Exclude development scripts from published package
  • 12281c1 chore: minor improvement for docs
  • e611fbc docs: add note about clicolors
  • e9b9a44 Apply clippy suggestion
  • 9cf0c5f ci: enable all workflows for pull requests
  • Additional commits viewable in compare view

Updates futures-timer from 3.0.3 to 3.0.4

Release notes

Sourced from futures-timer's releases.

3.0.4

Bug Fixes

  • Handle potential overflow gracefully (#68)

Changes

  • Upgrade dependencies (#72)
  • cfg-gate wasm dependencies for wasm32 targets (#75)
  • Fix compilation warnings (#83)
Changelog

Sourced from futures-timer's changelog.

3.0.4

Bug Fixes

  • Handle potential overflow gracefully (#68)

Changes

  • Upgrade dependencies (#72)
  • cfg-gate wasm dependencies for wasm32 targets (#75)
  • Fix compilation warnings (#83)
Commits
  • e8d2e87 Merge pull request #82 from jxs/prepare-3.0.4
  • e21263e merge master
  • 97f34c2 Prepare v3.0.4
  • 08f6454 Merge pull request #83 from jxs/fix/address-warnings
  • 57f9245 address warnings
  • ef863d1 Merge pull request #75 from DaniPopes/cfg-dependencies
  • d8ceba1 Merge branch 'master' into cfg-dependencies
  • 35261c2 Merge pull request #72 from grafbase/dependency-upgrade
  • 827aaf3 Merge pull request #68 from nazar-pc/handle-overflow-gracefully
  • c65fe74 Handle potential overflow gracefully
  • Additional commits viewable in compare view

Updates jsonrpsee from 0.24.10 to 0.24.11

Commits

Updates log from 0.4.29 to 0.4.33

Release notes

Sourced from log's releases.

0.4.32

What's Changed

Full Changelog: rust-lang/log@0.4.31...0.4.32

0.4.31

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.30...0.4.31

0.4.30

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.29...0.4.30

Notable Changes

Changelog

Sourced from log's changelog.

[0.4.33] - 2026-06-20

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.32...0.4.33

[0.4.32] - 2026-06-04

What's Changed

Full Changelog: rust-lang/log@0.4.31...0.4.32

[0.4.31] - 2026-06-02

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.30...0.4.31

[0.4.30] - 2026-05-21

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.29...0.4.30

Notable Changes

Commits
  • f405739 Merge pull request #734 from rust-lang/cargo/0.4.33
  • 6a24abf prepare for 0.4.33 release
  • 87e0621 Merge pull request #732 from matteo-zeggiotti-ok/fix-key-comparison
  • a9b5711 Review: fallback to the &str hash
  • cc89cc6 Review: fixed other comparisons
  • 920e7dc Review: fixed comparison on MaybeStaticStr
  • 0d71d3c Fixed key comparison
  • a5b5b21 Merge pull request #730 from rust-lang/cargo/0.4.32
  • c8d3b12 prepare for 0.4.32 release
  • ce6cd9f Merge pull request #729 from tisonkun/kv-std-support
  • Additional commits viewable in compare view

Updates mimalloc from 0.1.50 to 0.1.52

Release notes

Sourced from mimalloc's releases.

Version 0.1.52

Changes

  • Expose mi_stats_get_json().
  • Fix ARM compilation.

Version 0.1.51

Changes

  • Mimalloc bumped to v3.3.2 and v2.3.2.
  • Compile with msvc on windows.
Commits
  • abcd2be v0.1.52
  • 9db5330 Remove explicit arm instruction set
  • d06bd31 Merge pull request #161 from svix-jbrown/feat/stats-json
  • eb4a16d simplify API
  • e1fd9eb fix up some tests
  • 6805298 v0.1.51
  • ba2c9b1 Fix extended v3
  • 84969eb Merge pull request #160 from Havunen/feat/adjust_build_to_match_mimalloc
  • 843b9b2 Updated mimalloc to 3.3.2 and 2.3.2
  • da7a09c feat: expose mi_stats_get_json and a safe wrapper around it
  • Additional commits viewable in compare view

Updates rand from 0.8.5 to 0.8.6

Changelog

Sourced from rand's changelog.

[0.8.6] - 2026-04-14

This release back-ports a fix from v0.10. See also #1763.

Changes

  • Deprecate feature log (#1772)

#1763: rust-random/rand#1763 #1772: rust-random/rand#1772

  • Drop the experimental simd_support feature.
Commits
  • 5309f25 0.8.6 (#1772): update for recent nightly rustc and backport #1764
  • 1126d03 When testing rustc 1.36, use compatible dependencies.
  • 143b602 Add Cargo.lock.msrv.
  • 9be86f2 Fix cross build test.
  • 5e0d50d Drop simd_support.
  • 8ff02f0 Upgrade cache action.
  • 4ad0cc3 Don't test for unsupported target architecture.
  • 258e6d0 Address warning.
  • 9f0e676 Mark some internal traits as potentially unused.
  • 6f123c1 Workaround never constructed and never used warning.
  • 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 spin from 0.10.0 to 0.12.0

Updates thread-priority from 3.0.0 to 3.1.1

Changelog

Sourced from thread-priority's changelog.

3.1.0, 3.1.1 on 20-06-2026

Changed the windows crate requirements from =0.61 to >=0.61 <0.63.

Commits

Updates x509-parser from 0.17.0 to 0.18.1

Changelog

Sourced from x509-parser's changelog.

ChangeLog

[Unreleased][unreleased]

Added/Changed/Fixed

Thanks

Commits

Updates zeroize from 1.8.2 to 1.9.0

Commits

Updates ziggy from 1.7.0 to 1.7.1

Commits
  • d99ec12 Prepare for 1.7.1 release
  • 7146a21 Merge pull request #174 from srlabs/update_afl_rs
  • 50c848b chore(deps): bump afl.rs version
  • 41f89cd Merge pull request #173 from srlabs/fix_triage
  • 602152d fix triage: pass correct afl output path to casr-afl
  • ff07465 Merge pull request #170 from srlabs/fix-prof-merging
  • ea9e5fd Perf nit
  • accdb10 Fix coverage generation bug
  • 92d4b78 Fix logs directory bug when minimizing
  • See full diff in compare view

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 cargo-deps group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.13.0` | `4.14.0` |
| [aes](https://github.com/RustCrypto/block-ciphers) | `0.9.0` | `0.9.1` |
| [async-nats](https://github.com/nats-io/nats.rs) | `0.48.0` | `0.49.1` |
| [bitvec](https://github.com/bitvecto-rs/bitvec) | `1.0.1` | `1.1.1` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.11.1` | `1.12.0` |
| [bytesize](https://github.com/bytesize-rs/bytesize) | `2.3.1` | `2.4.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.62` | `1.2.65` |
| [console](https://github.com/console-rs/console) | `0.15.11` | `0.16.3` |
| [futures-timer](https://github.com/async-rs/futures-timer) | `3.0.3` | `3.0.4` |
| [jsonrpsee](https://github.com/paritytech/jsonrpsee) | `0.24.10` | `0.24.11` |
| [log](https://github.com/rust-lang/log) | `0.4.29` | `0.4.33` |
| [mimalloc](https://github.com/purpleprotocol/mimalloc_rust) | `0.1.50` | `0.1.52` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.8.6` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.149` | `1.0.150` |
| spin | `0.10.0` | `0.12.0` |
| [thread-priority](https://github.com/iddm/thread-priority) | `3.0.0` | `3.1.1` |
| [x509-parser](https://github.com/rusticata/x509-parser) | `0.17.0` | `0.18.1` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.8.2` | `1.9.0` |
| [ziggy](https://github.com/srlabs/ziggy) | `1.7.0` | `1.7.1` |



Updates `actix-web` from 4.13.0 to 4.14.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.13.0...web-v4.14.0)

Updates `aes` from 0.9.0 to 0.9.1
- [Commits](RustCrypto/block-ciphers@aes-v0.9.0...aes-v0.9.1)

Updates `async-nats` from 0.48.0 to 0.49.1
- [Release notes](https://github.com/nats-io/nats.rs/releases)
- [Commits](nats-io/nats.rs@async-nats/v0.48.0...async-nats/v0.49.1)

Updates `bitvec` from 1.0.1 to 1.1.1
- [Changelog](https://github.com/ferrilab/bitvec/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bitvecto-rs/bitvec/commits)

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 `bytesize` from 2.3.1 to 2.4.0
- [Release notes](https://github.com/bytesize-rs/bytesize/releases)
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md)
- [Commits](bytesize-rs/bytesize@bytesize-v2.3.1...bytesize-v2.4.0)

Updates `cc` from 1.2.62 to 1.2.65
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.62...cc-v1.2.65)

Updates `console` from 0.15.11 to 0.16.3
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.15.11...0.16.3)

Updates `futures-timer` from 3.0.3 to 3.0.4
- [Release notes](https://github.com/async-rs/futures-timer/releases)
- [Changelog](https://github.com/async-rs/futures-timer/blob/master/CHANGELOG.md)
- [Commits](async-rs/futures-timer@v3.0.3...v3.0.4)

Updates `jsonrpsee` from 0.24.10 to 0.24.11
- [Release notes](https://github.com/paritytech/jsonrpsee/releases)
- [Changelog](https://github.com/paritytech/jsonrpsee/blob/master/CHANGELOG.md)
- [Commits](paritytech/jsonrpsee@v0.24.10...v0.24.11)

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

Updates `mimalloc` from 0.1.50 to 0.1.52
- [Release notes](https://github.com/purpleprotocol/mimalloc_rust/releases)
- [Commits](purpleprotocol/mimalloc_rust@v0.1.50...v0.1.52)

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

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 `spin` from 0.10.0 to 0.12.0

Updates `thread-priority` from 3.0.0 to 3.1.1
- [Release notes](https://github.com/iddm/thread-priority/releases)
- [Changelog](https://github.com/iddm/thread-priority/blob/master/CHANGELOG.md)
- [Commits](https://github.com/iddm/thread-priority/commits)

Updates `x509-parser` from 0.17.0 to 0.18.1
- [Changelog](https://github.com/rusticata/x509-parser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rusticata/x509-parser/commits)

Updates `zeroize` from 1.8.2 to 1.9.0
- [Commits](RustCrypto/utils@zeroize-v1.8.2...zeroize-v1.9.0)

Updates `ziggy` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/srlabs/ziggy/releases)
- [Changelog](https://github.com/srlabs/ziggy/blob/main/CHANGELOG.md)
- [Commits](srlabs/ziggy@1.7.0...1.7.1)

---
updated-dependencies:
- dependency-name: actix-web
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: aes
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: async-nats
  dependency-version: 0.49.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: bitvec
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: bytes
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: bytesize
  dependency-version: 2.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: cc
  dependency-version: 1.2.65
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: console
  dependency-version: 0.16.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: futures-timer
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: jsonrpsee
  dependency-version: 0.24.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: log
  dependency-version: 0.4.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: mimalloc
  dependency-version: 0.1.52
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: rand
  dependency-version: 0.8.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: serde_json
  dependency-version: 1.0.150
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: spin
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: thread-priority
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: x509-parser
  dependency-version: 0.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: zeroize
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: ziggy
  dependency-version: 1.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
...

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 22, 2026
@immunefi-magnus

Copy link
Copy Markdown

🛡️ Immunefi PR Reviews

We noticed that your project isn't set up for automatic code reviews. If you'd like this PR reviewed by the Immunefi team, you can request it manually using the link below:

🔗 Send this PR in for review

Once submitted, we'll take care of assigning a reviewer and follow up here.

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Want reviews to match your repository better? Bugbot Learning can learn team-specific rules from PR activity. A team admin can enable Learning in the Cursor dashboard.

Comment @cursor review or bugbot run to trigger another review on this PR

Reviewed by Cursor Bugbot for commit 30a9802. Configure here.

Comment thread Cargo.toml
chacha20 = { version = "0.10.0", default-features = false }
clap = "4.6.1"
console = "0.15.11"
console = "0.16.3"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dual console breaks ANSI disable

Medium Severity

Bumping workspace console to 0.16.3 while sc-informant and sc-tracing still use console 0.15.11 links two copies of the crate. init_logger only calls set_colors_enabled on the 0.16 instance, so Substrate’s 0.15 styling stays enabled and embedded ANSI can still appear escaped in tracing output.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 30a9802. Configure here.

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