Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps the all group in /local-registry with 9 updates:

Package From To
cached 0.55.1 0.56.0
criterion 0.6.0 0.7.0
enumset 1.1.6 1.1.7
numtoa 0.3.0 0.3.1
rand 0.9.1 0.9.2
rstest 0.25.0 0.26.1
strfmt 0.2.4 0.2.5
strum 0.27.1 0.27.2
strum_macros 0.27.1 0.27.2

Updates cached from 0.55.1 to 0.56.0

Changelog

Sourced from cached's changelog.

[0.56.0 / [cached_proc_macro[0.25.0]]]

Added

Changed

  • BREAKING All timed/expiring caches now use std::time::Duration values instead of raw seconds/millis.
  • Update redis to 0.32
  • Update hashbrown to 0.15

Removed

Commits

Updates criterion from 0.6.0 to 0.7.0

Changelog

Sourced from criterion's changelog.

[0.7.0] - 2025-07-25

  • Bump version of criterion-plot to align dependencies.
Commits
  • 567405d release: bump criterion and criterion-plot versions (#878)
  • ccccbcc fix: deal with throughput in bits (#861)
  • deb0eb0 feat: support throughput reports in bits (#833)
  • d4fd7cc Add CI job checking library builds with oldest allowed dependencies (#854)
  • See full diff in compare view

Updates enumset from 1.1.6 to 1.1.7

Changelog

Sourced from enumset's changelog.

Version 1.1.7 (2025-07-08)

  • Fix hygiene issue where the enumset_set! macro with no arguments required EnumSet to be imported into the current context. (Thanks @​cbiffle)
  • Fix issue where #[derive(EnumSetType)] used to cause compile errors when cross-compiling with different flags on the host and target sides. (Thanks @​dtolnay)
Commits
  • 3c942dd Bump version to 1.1.7
  • 1d459f2 Fix a few remaining references to enumset_test_no_std
  • 9b3b85d Clean up the serde feature to remove the ugly serde2 hack.
  • b1a1f11 Rename enumset_test_no_std to better reflect what it currently tests.
  • dcb934b Reuse enumset_test_no_std as a test for cross-compiling with divergent serde ...
  • 1d291f9 Merge branch 'main' of github.com:Lymia/enumset
  • 47915cc Bless actual current trybuild output.
  • d72c744 Merge pull request #63 from dtolnay-contrib/serde
  • fe52c0d Merge pull request #61 from cbiffle/cbiffle/enumset-hygiene
  • 51e84d9 Fix discrepancy between host vs target "serde" feature
  • Additional commits viewable in compare view

Updates numtoa from 0.3.0 to 0.3.1

Commits

Updates rand from 0.9.1 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)
Commits

Updates rstest from 0.25.0 to 0.26.1

Release notes

Sourced from rstest's releases.

0.26.1

Fix Docs

Full Changelog: la10736/rstest@v0.26.0...v0.26.1

0.26.0

What's Changed

New Contributors

Full Changelog: la10736/rstest@v0.25.0...v0.26.0

Changelog

Sourced from rstest's changelog.

[0.26.1] 2025/7/27

Fixed

  • Docs

[0.26.0] 2025/7/26

Changed

  • The #[files(...)] attribute now ignores matched directory paths by default. See #306 thanks to @​Obito-git.

Add

  • Introduced the #[dirs] attribute, which can be used with #[files(...)] to explicitly include directory paths. See #306 thanks to @​Obito-git.
  • The CI now runs builds and tests on Windows, as well.
  • #[test_attr] to define test attribute explicit and also enable the use of #[macro_rules_attribute::apply(<macro>)]: naw also smol works. See #303 #311 #315 thanks to @​coriolinus.

Fixed

  • Removed unsued trait and impl spotted out on 1.89.0-nightly
  • Add missed tests about ignore attribute's args in rstest expansion. See #313
  • The #[files(...)] attribute now works reliably on Windows.
  • Now global attributes can go everywhere in the list also where case is used
Commits

Updates strfmt from 0.2.4 to 0.2.5

Commits

Updates strum from 0.27.1 to 0.27.2

Release notes

Sourced from strum's releases.

v0.27.2

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.27.1...v0.27.2

Changelog

Sourced from strum's changelog.

0.27.2

  • #141: Adding support for doc comments on EnumDiscriminants generated type.

    • The doc comment will be copied from the variant on the type itself.
  • #435:allow discriminants on empty enum.

  • #443: Change enum table callbacks to FnMut.

  • #444: Add #[automatically_derived] to the impls by @​dandedotdev in Peternator7/strum#444

    • This should make the linter less noisy with warnings in generated code.
  • #440: Implement a suffix attribute for serialization of enum variants.

    #[derive(strum::Display)]
    #[strum(suffix=".json")]
    #[strum(serialize_all="snake_case")]
    enum StorageConfiguration {
      PostgresProvider,
      S3StorageProvider,
      AzureStorageProvider,
    }
    fn main() {
    let response = SurveyResponse::Other("It was good".into());
    println!("Loading configuration from: {}", StorageConfiguration::PostgresProvider);
    // prints: Loaded Configuration from: postgres_provider.json
    }

  • #446: Drop needless rustversion dependency.

Commits

Updates strum_macros from 0.27.1 to 0.27.2

Release notes

Sourced from strum_macros's releases.

v0.27.2

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.27.1...v0.27.2

Changelog

Sourced from strum_macros's changelog.

0.27.2

  • #141: Adding support for doc comments on EnumDiscriminants generated type.

    • The doc comment will be copied from the variant on the type itself.
  • #435:allow discriminants on empty enum.

  • #443: Change enum table callbacks to FnMut.

  • #444: Add #[automatically_derived] to the impls by @​dandedotdev in Peternator7/strum#444

    • This should make the linter less noisy with warnings in generated code.
  • #440: Implement a suffix attribute for serialization of enum variants.

    #[derive(strum::Display)]
    #[strum(suffix=".json")]
    #[strum(serialize_all="snake_case")]
    enum StorageConfiguration {
      PostgresProvider,
      S3StorageProvider,
      AzureStorageProvider,
    }
    fn main() {
    let response = SurveyResponse::Other("It was good".into());
    println!("Loading configuration from: {}", StorageConfiguration::PostgresProvider);
    // prints: Loaded Configuration from: postgres_provider.json
    }

  • #446: Drop needless rustversion dependency.

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 group in /local-registry with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [cached](https://github.com/jaemk/cached) | `0.55.1` | `0.56.0` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.6.0` | `0.7.0` |
| [enumset](https://github.com/Lymia/enumset) | `1.1.6` | `1.1.7` |
| [numtoa](https://github.com/mmstick/numtoa) | `0.3.0` | `0.3.1` |
| [rand](https://github.com/rust-random/rand) | `0.9.1` | `0.9.2` |
| [rstest](https://github.com/la10736/rstest) | `0.25.0` | `0.26.1` |
| [strfmt](https://github.com/vitiral/strfmt) | `0.2.4` | `0.2.5` |
| [strum](https://github.com/Peternator7/strum) | `0.27.1` | `0.27.2` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.27.1` | `0.27.2` |


Updates `cached` from 0.55.1 to 0.56.0
- [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jaemk/cached/commits)

Updates `criterion` from 0.6.0 to 0.7.0
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](bheisler/criterion.rs@0.6.0...0.7.0)

Updates `enumset` from 1.1.6 to 1.1.7
- [Changelog](https://github.com/Lymia/enumset/blob/main/RELEASES.md)
- [Commits](Lymia/enumset@v1.1.6...v1.1.7)

Updates `numtoa` from 0.3.0 to 0.3.1
- [Changelog](https://github.com/mmstick/numtoa/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mmstick/numtoa/commits/0.3.1)

Updates `rand` from 0.9.1 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@rand_core-0.9.1...rand_core-0.9.2)

Updates `rstest` from 0.25.0 to 0.26.1
- [Release notes](https://github.com/la10736/rstest/releases)
- [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md)
- [Commits](la10736/rstest@v0.25.0...v0.26.1)

Updates `strfmt` from 0.2.4 to 0.2.5
- [Commits](https://github.com/vitiral/strfmt/commits)

Updates `strum` from 0.27.1 to 0.27.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.27.1...v0.27.2)

Updates `strum_macros` from 0.27.1 to 0.27.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.27.1...v0.27.2)

---
updated-dependencies:
- dependency-name: cached
  dependency-version: 0.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: criterion
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: enumset
  dependency-version: 1.1.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: numtoa
  dependency-version: 0.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rand
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rstest
  dependency-version: 0.26.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: strfmt
  dependency-version: 0.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: strum
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: strum_macros
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the x:rep/tiny Tiny amount of reputation label Aug 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner August 1, 2025 12:46
@dependabot dependabot bot added the x:rep/tiny Tiny amount of reputation label Aug 1, 2025
@github-actions
Copy link

github-actions bot commented Aug 1, 2025

Hello 👋 Thanks for your PR.

This repo does not currently have dedicated maintainers. Our guardians team will attempt to review and merge your PR, but it will likely take longer for your PR to be reviewed.

If you enjoy contributing to Exercism and have a track-record of doing so successfully, you might like to become an Exercism maintainer for this track.

Please feel free to ask any questions, or chat to us about anything to do with this PR or the reviewing process on the Exercism forum.

(cc @exercism/guardians)

@senekor senekor merged commit 30ddb5a into main Aug 1, 2025
3 checks passed
@senekor senekor deleted the dependabot/cargo/local-registry/all-425cc3b295 branch August 1, 2025 18:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

x:rep/tiny Tiny amount of reputation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants