Skip to content

Bump the all-dependencies group across 1 directory with 11 updates#4318

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/all-dependencies-7bcccf0087
Closed

Bump the all-dependencies group across 1 directory with 11 updates#4318
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/all-dependencies-7bcccf0087

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the all-dependencies group with 11 updates in the / directory:

Package From To
clap 4.6.0 4.6.1
clap_complete 4.6.0 4.6.2
rayon 1.11.0 1.12.0
starknet-rust-crypto 0.9.0 0.19.0
ctor 0.6.3 0.10.1
tokio 1.51.1 1.52.1
rand 0.8.5 0.9.2
axum 0.8.8 0.8.9
sha3 0.10.8 0.11.0
sha2 0.10.9 0.11.0
mimalloc 0.1.48 0.1.50

Updates clap from 4.6.0 to 4.6.1

Release notes

Sourced from clap's releases.

v4.6.1

[4.6.1] - 2026-04-15

Fixes

  • (derive) Ensure rebuilds happen when an read env variable is changed
Changelog

Sourced from clap's changelog.

[4.6.1] - 2026-04-15

Fixes

  • (derive) Ensure rebuilds happen when an read env variable is changed
Commits
  • 1420275 chore: Release
  • d2c817d docs: Update changelog
  • f88c94e Merge pull request #6341 from epage/sep
  • acbb822 fix(complete): Reduce risk of conflict with actual subcommands
  • a49fadb refactor(complete): Pull out subcommand separator
  • ddc008b Merge pull request #6332 from epage/update
  • 497dc50 chore: Update compatible dependencies
  • dca2326 Merge pull request #6331 from clap-rs/renovate/j178-prek-action-2.x
  • 54bdaa3 chore(deps): Update j178/prek-action action to v2
  • f0d30d9 chore: Release
  • Additional commits viewable in compare view

Updates clap_complete from 4.6.0 to 4.6.2

Release notes

Sourced from clap_complete's releases.

v4.6.1

[4.6.1] - 2026-04-15

Fixes

  • (derive) Ensure rebuilds happen when an read env variable is changed
Changelog

Sourced from clap_complete's changelog.

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

5.0.0 - TBD

available through unstable-v5 feature flag

Breaking Changes

  • Made ArgPredicate non_exhaustive
  • (help) Change default Command::term_width to "source format"
  • (help) Change default Command::max_term_width to 100
  • (derive) Vec<Vec<T>> types are now assuming to capture occurrences
  • (derive) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

Features

  • (derive) Group values by their occurrence with Vec<Vec<T>>

[Unreleased] - ReleaseDate

[4.6.1] - 2026-04-15

Fixes

  • (derive) Ensure rebuilds happen when an read env variable is changed
Commits
  • 0fe0be3 chore: Release
  • 480af9d docs: Update changelog
  • 2b3ddd0 Merge pull request #6340 from liskin/fix-completion-escape
  • 7ffe739 fix(complete): Do not suggest options after "--"
  • d47fc4f test(complete): Options suggested after escape (--)
  • 1420275 chore: Release
  • d2c817d docs: Update changelog
  • f88c94e Merge pull request #6341 from epage/sep
  • acbb822 fix(complete): Reduce risk of conflict with actual subcommands
  • a49fadb refactor(complete): Pull out subcommand separator
  • Additional commits viewable in compare view

Updates rayon from 1.11.0 to 1.12.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.12.0 (2026-04-13)

  • Fixed a bug in parallel Range<char> when the end is 0xE000, just past the surrogate boundary, which was unsafely producing invalid char values.
  • The new method ParallelSlice::par_array_windows works like par_windows but with a constant length, producing &[T; N] items.
Commits
  • 7449d7d Merge #1093
  • b3d9e3f Release rayon 1.8.0 and rayon-core 1.12.0
  • 3fe51e5 Fix clippy::let_and_return
  • 082f215 Merge #1087
  • ea0c06d core: registry: Factor out "wait till out of work" part of the main loop.
  • 75524e2 Merge #1063
  • 01d2800 Ignore the multi-threaded test on emscripten/wasm
  • 40b59c0 core: Make use_current_thread error rather than panic when already in the pool.
  • f4db4d7 core: tests: Add some basic tests for ThreadPoolBuilder::use_current_thread.
  • 87274ad core: registry: Add some more documentation for ThreadPoolBuilder::use_curren...
  • Additional commits viewable in compare view

Updates starknet-rust-crypto from 0.9.0 to 0.19.0

Release notes

Sourced from starknet-rust-crypto's releases.

0.19.0

Added

  • Support Starknet JSON-RPC v0.10.2
  • New StorageResponseFlag enum and StorageResult type for starknet_getStorageAt with optional INCLUDE_LAST_UPDATE_BLOCK metadata.
  • New GetStorageAtResult enum that handles both plain Felt and StorageResult response shapes.
  • contract_addresses filter parameter on starknet_getStateUpdate requests.
  • InvalidProof variant (error code 69) to StarknetError.

Changed

  • Breaking: Provider::get_storage_at now accepts an optional response_flags parameter and returns GetStorageAtResult instead of Felt.
  • Breaking: BroadcastedInvokeTransaction::proof type changed from Option<Vec<u64>> to Option<String> (base-64 encoded big-endian packed u32 values).
  • SimulateTransactionsResult and TraceBlockTransactionsResult wrapper structs removed from codegen; manually implemented enum variants in types/mod.rs are now the canonical types.

Fixed

  • SigningKey::from_random uses now a correct value for Stark curve's order (#98)
  • StarknetError::InvalidProof error is now correctly mapped (#125).

Removed

  • Removed event_count and transaction_count from sequencer::models::Block in starknet-rust-providers, as these fields are not part of sequencer gateway block responses (#101)

0.19.0-rc.2

  • StarknetError::InvalidProof error is now correctly mapped (#125).

0.19.0-rc.1

Added

  • Support Starknet JSON-RPC v0.10.1 (#120).
  • New StorageResponseFlag enum and StorageResult type for starknet_getStorageAt with optional INCLUDE_LAST_UPDATE_BLOCK metadata.
  • New GetStorageAtResult enum that handles both plain Felt and StorageResult response shapes.
  • contract_addresses filter parameter on starknet_getStateUpdate requests.
  • InvalidProof variant (error code 69) to StarknetError.

Changed

  • Breaking: Provider::get_storage_at now accepts an optional response_flags parameter and returns GetStorageAtResult instead of Felt.
  • Breaking: BroadcastedInvokeTransaction::proof type changed from Option<Vec<u64>> to Option<String> (base-64 encoded big-endian packed u32 values).
  • SimulateTransactionsResult and TraceBlockTransactionsResult wrapper structs removed from codegen; manually implemented enum variants in types/mod.rs are now the canonical types.

0.19.0-rc.0

Added

  • Support Starknet JSON-RPC v0.10.1-rc.2 (#103).

Fixed

... (truncated)

Changelog

Sourced from starknet-rust-crypto's changelog.

[0.19.0] - 2026-04-14

Added

  • Support Starknet JSON-RPC v0.10.2
  • New StorageResponseFlag enum and StorageResult type for starknet_getStorageAt with optional INCLUDE_LAST_UPDATE_BLOCK metadata.
  • New GetStorageAtResult enum that handles both plain Felt and StorageResult response shapes.
  • contract_addresses filter parameter on starknet_getStateUpdate requests.
  • InvalidProof variant (error code 69) to StarknetError.

Changed

  • Breaking: Provider::get_storage_at now accepts an optional response_flags parameter and returns GetStorageAtResult instead of Felt.
  • Breaking: BroadcastedInvokeTransaction::proof type changed from Option<Vec<u64>> to Option<String> (base-64 encoded big-endian packed u32 values).
  • SimulateTransactionsResult and TraceBlockTransactionsResult wrapper structs removed from codegen; manually implemented enum variants in types/mod.rs are now the canonical types.

Fixed

  • SigningKey::from_random uses now a correct value for Stark curve's order (#98)
  • StarknetError::InvalidProof error is now correctly mapped (#125).

Removed

  • Removed event_count and transaction_count from sequencer::models::Block in starknet-rust-providers, as these fields are not part of sequencer gateway block responses (#101)

[0.19.0-rc.2] - 2026-03-23

Fixed

  • StarknetError::InvalidProof error is now correctly mapped (#125).

[0.19.0-rc.1] - 2026-03-16

Added

  • Support Starknet JSON-RPC v0.10.1 (#120).
  • New StorageResponseFlag enum and StorageResult type for starknet_getStorageAt with optional INCLUDE_LAST_UPDATE_BLOCK metadata.
  • New GetStorageAtResult enum that handles both plain Felt and StorageResult response shapes.
  • contract_addresses filter parameter on starknet_getStateUpdate requests.
  • InvalidProof variant (error code 69) to StarknetError.

Changed

  • Breaking: Provider::get_storage_at now accepts an optional response_flags parameter and returns GetStorageAtResult instead of Felt.
  • Breaking: BroadcastedInvokeTransaction::proof type changed from Option<Vec<u64>> to Option<String> (base-64 encoded big-endian packed u32 values).
  • SimulateTransactionsResult and TraceBlockTransactionsResult wrapper structs removed from codegen; manually implemented enum variants in types/mod.rs are now the canonical types.

[0.19.0-rc.0] - 2026-02-24

Added

... (truncated)

Commits
  • 8f8d304 Bump version to 0.19.0 (#141)
  • 9417dff Fix jsonrpc_spec_version test (#140)
  • c08f25d Re-enable rustls in reqwest (#138)
  • e437eb3 chore(deps): bump the all-dependencies group across 1 directory with 21 updat...
  • ac8a295 chore(deps): bump the actions group across 1 directory with 2 updates (#124)
  • 71b52e0 test: Allow test URL overrides and HTTPS-based endpoints (#128)
  • 1dfce32 Add PR template (#114)
  • 0d2453a Fix tests that check RPC and Starknet versions (#135)
  • 02d8308 fix: use hex-based storage key in jsonrpc_get_storage_proof test (#132)
  • ee4216b test: stabilize live-network tx tests and CI retries (#104)
  • Additional commits viewable in compare view

Updates ctor from 0.6.3 to 0.10.1

Changelog

Sourced from ctor's changelog.

ctor [0.10.1] - 2026-04-22

dtor [0.8.1] - 2026-04-22

link-section [0.2.1] - 2026-04-22

Added

  • Included licenses in all files.
  • Bumped proc-macro dependency versions.
  • dtor crate exports native module with at_binary_exit and at_library_exit functions.

Fixed

  • Fix MSRV in ctor docs.
  • Various hardening fixes under Miri.
  • Adding priority to ctors accidentally enabled the anonymous flag.

Changed

  • link-section crate no longer offers const section pointers.
  • ctor exports all dtor macros from dtor crate rather than reimplementing them.
Commits

Updates tokio from 1.51.1 to 1.52.1

Release notes

Sourced from tokio's releases.

Tokio v1.52.1

1.52.1 (April 16th, 2026)

Fixed

  • runtime: revert #7757 to fix [a regression]#8056 that causes spawn_blocking to hang (#8057)

#7757: tokio-rs/tokio#7757 #8056: tokio-rs/tokio#8056 #8057: tokio-rs/tokio#8057

Tokio v1.52.0

1.52.0 (April 14th, 2026)

Added

  • io: AioSource::register_borrowed for I/O safety support (#7992)
  • net: add try_io function to unix::pipe sender and receiver types (#8030)

Added (unstable)

  • runtime: Builder::enable_eager_driver_handoff setting enable eager hand off of the I/O and time drivers before polling tasks (#8010)
  • taskdump: add trace_with() for customized task dumps (#8025)
  • taskdump: allow impl FnMut() in trace_with instead of just fn() (#8040)
  • fs: support io_uring in AsyncRead for File (#7907)

Changed

  • runtime: improve spawn_blocking scalability with sharded queue (#7757)
  • runtime: use compare_exchange_weak() in worker queue (#8028)

Fixed

  • runtime: overflow second half of tasks when local queue is filled instead of first half (#8029)

Documented

  • docs: fix typo in oneshot::Sender::send docs (#8026)
  • docs: hide #[tokio::main] attribute in the docs of sync::watch (#8035)
  • net: add docs on ConnectionRefused errors with UDP sockets (#7870)

#7757: tokio-rs/tokio#7757 #7870: tokio-rs/tokio#7870 #7907: tokio-rs/tokio#7907 #7992: tokio-rs/tokio#7992 #8010: tokio-rs/tokio#8010 #8025: tokio-rs/tokio#8025 #8026: tokio-rs/tokio#8026 #8028: tokio-rs/tokio#8028 #8029: tokio-rs/tokio#8029

... (truncated)

Commits
  • 905c146 chore: prepare to release v1.52.1 (#8059)
  • 56aaa43 rt: revert #7757 to fix regression in spawn_blocking (#8057)
  • 57ff47a ci: update trybuild to expect output from rustc 1.95.0 (#8058)
  • 812de3e ci: bump taiki-e/cache-cargo-install-action from 1 to 3 (#8053)
  • ba82e73 ci: use Dependabot to keep github actions up to date (#8052)
  • 2e85f9d ci: replace cirrus-ci with freebsd-vm (#8041)
  • a7e1cd8 ci: update GitHub Actions workflows to use latest tool versions (#8047)
  • 5f7be0a chore: perpare 1.52.0 (#8045)
  • 36d12d2 taskdump: allow impl FnMut() in taskdumps instead of just fn() (#8040)
  • f943312 fs: support io-uring in AsyncRead for File (#7907)
  • Additional commits viewable in compare view

Updates rand from 0.8.5 to 0.9.2

Changelog

Sourced from rand's changelog.

[0.9.2] - 2025-07-20

Deprecated

  • Deprecate rand::rngs::mock module and StepRng generator (#1634)

Additions

  • Enable WeightedIndex<usize> (de)serialization (#1646)

[0.9.1] - 2025-04-17

Security and unsafe

  • Revise "not a crypto library" policy again (#1565)
  • Remove zerocopy dependency from rand (#1579)

Fixes

  • Fix feature simd_support for recent nightly rust (#1586)

Changes

  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#1623), reverting an undocumented change (#1382) to the previous release.

Additions

  • Add rand::distr::Alphabetic distribution. (#1587)
  • Re-export rand_core (#1604)

#1565: rust-random/rand#1565 #1579: rust-random/rand#1579 #1586: rust-random/rand#1586 #1587: rust-random/rand#1587 #1604: rust-random/rand#1604 #1623: rust-random/rand#1623 #1634: rust-random/rand#1634 #1646: rust-random/rand#1646

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)

... (truncated)

Commits

Updates axum from 0.8.8 to 0.8.9

Release notes

Sourced from axum's releases.

axum-v0.8.9

  • added: WebSocketUpgrade::{requested_protocols, set_selected_protocol} for more flexible subprotocol selection (#3597)
  • changed: Update minimum rust version to 1.80 (#3620)
  • fixed: Set connect endpoint on correct field in MethodRouter (#3656)
  • fixed: Return specific error message when multipart body limit is exceeded (#3611)

#3597: tokio-rs/axum#3597 #3620: tokio-rs/axum#3620 #3656: tokio-rs/axum#3656 #3611: tokio-rs/axum#3611

Commits

Updates sha3 from 0.10.8 to 0.11.0

Commits

Updates sha2 from 0.10.9 to 0.11.0

Commits

Updates mimalloc from 0.1.48 to 0.1.50

Release notes

Sourced from mimalloc's releases.

Version 0.1.50

Changes

  • Update to mimalloc v2.3.1 and v3.3.1

Version 0.1.49

Changes

  • Update to mimalloc v2.3.0 and v3.3.0
  • Use mimalloc v3 by default.
Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
rand [>= 0.9.a, < 0.10]

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 all-dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.6.0` | `4.6.1` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.6.0` | `4.6.2` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.11.0` | `1.12.0` |
| [starknet-rust-crypto](https://github.com/software-mansion/starknet-rust) | `0.9.0` | `0.19.0` |
| [ctor](https://github.com/mmastrac/rust-ctor) | `0.6.3` | `0.10.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.51.1` | `1.52.1` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.2` |
| [axum](https://github.com/tokio-rs/axum) | `0.8.8` | `0.8.9` |
| [sha3](https://github.com/RustCrypto/hashes) | `0.10.8` | `0.11.0` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.10.9` | `0.11.0` |
| [mimalloc](https://github.com/purpleprotocol/mimalloc_rust) | `0.1.48` | `0.1.50` |



Updates `clap` from 4.6.0 to 4.6.1
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.0...clap_complete-v4.6.1)

Updates `clap_complete` from 4.6.0 to 4.6.2
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.0...clap_complete-v4.6.2)

Updates `rayon` from 1.11.0 to 1.12.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.11.0...rayon-core-v1.12.0)

Updates `starknet-rust-crypto` from 0.9.0 to 0.19.0
- [Release notes](https://github.com/software-mansion/starknet-rust/releases)
- [Changelog](https://github.com/software-mansion/starknet-rust/blob/master/CHANGELOG.md)
- [Commits](software-mansion/starknet-rust@starknet/v0.9.0...0.19.0)

Updates `ctor` from 0.6.3 to 0.10.1
- [Changelog](https://github.com/mmastrac/rust-ctor/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mmastrac/rust-ctor/commits)

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

Updates `rand` from 0.8.5 to 0.9.2
- [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.8.5...rand_core-0.9.2)

Updates `axum` from 0.8.8 to 0.8.9
- [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.8...axum-v0.8.9)

Updates `sha3` from 0.10.8 to 0.11.0
- [Commits](RustCrypto/hashes@sha3/v0.10.8...sha3-v0.11.0)

Updates `sha2` from 0.10.9 to 0.11.0
- [Commits](RustCrypto/hashes@sha2-v0.10.9...sha2-v0.11.0)

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

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: clap_complete
  dependency-version: 4.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: rayon
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: starknet-rust-crypto
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ctor
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tokio
  dependency-version: 1.52.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: rand
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: axum
  dependency-version: 0.8.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: sha3
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: sha2
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: mimalloc
  dependency-version: 0.1.50
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-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 Apr 24, 2026
@dependabot dependabot Bot requested a review from a team April 24, 2026 11:03
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 24, 2026
@dependabot dependabot Bot requested review from DelevoXDG and MKowalski8 April 24, 2026 11:03
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 27, 2026

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

@dependabot dependabot Bot closed this Apr 27, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/all-dependencies-7bcccf0087 branch April 27, 2026 10:03
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