Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
anyhow 1.0.96 1.0.97
bigdecimal 0.4.7 0.4.8
cached 0.54.0 0.55.1
either 1.14.0 1.15.0
indexmap 2.7.1 2.8.0
indoc 2.0.5 2.0.6
int-enum 1.1.2 1.2.0
itoa 1.0.14 1.0.15
pest 2.7.15 2.8.0
pest_derive 2.7.15 2.8.0
rstest 0.24.0 0.25.0
serde 1.0.218 1.0.219
serde_derive 1.0.218 1.0.219
thiserror 2.0.11 2.0.12
time 0.3.37 0.3.41
tinyset 0.5.1 0.5.2
uuid 1.15.1 1.16.0

Updates anyhow from 1.0.96 to 1.0.97

Release notes

Sourced from anyhow's releases.

1.0.97

  • Documentation improvements
Commits

Updates bigdecimal from 0.4.7 to 0.4.8

Release notes

Sourced from bigdecimal's releases.

v0.4.8

What's Changed

Full Changelog: akubera/bigdecimal-rs@v0.4.7...v0.4.8

Commits
  • e5f2856 v0.4.8
  • 51578e3 Version 0.4.8
  • 4a84477 Merge formatting zero fix into trunk
  • e9e8ee1 Add more formatting test
  • 8f4a946 Replace BigDecimalRef "this" param with "sign" in format functions
  • 951904a impl_fmt: Fix printing of 0 with exponent
  • 466b291 Fix broken link in README.md
  • e5d4a3b Begin v0.4.8 development
  • See full diff in compare view

Updates cached from 0.54.0 to 0.55.1

Changelog

Sourced from cached's changelog.

[0.55.1 / [cached_proc_macro[0.24.0]]]

Added

  • Add sync_writes = "by_key" support to `#[cached]

Changed

  • Update redis to 0.29.0
  • Update directories to 6.0
  • Update thiserror to 2.0
  • With the sync_writes = "by_key" addition, the argument values changed from a boolean to strings. The equivalent of sync_writes = true is now sync_writes = "default"

Removed

Commits

Updates either from 1.14.0 to 1.15.0

Commits

Updates indexmap from 2.7.1 to 2.8.0

Changelog

Sourced from indexmap's changelog.

2.8.0 (2025-03-10)

  • Added indexmap_with_default! and indexset_with_default! to be used with alternative hashers, especially when using the crate without std.
  • Implemented PartialEq between each Slice and []/arrays.
  • Removed the internal rustc-rayon feature and dependency.
Commits
  • dd06e57 Merge pull request #381 from cuviper/release-2.8.0
  • ab5c2df Release 2.8.0
  • b10b273 Merge pull request #380 from iajoiner/feat/macros-no-std
  • 5fd8971 feat: add indexmap_with_default and indexset_with_default macros
  • 5b133ae Merge pull request #376 from cuviper/slice-eq
  • b56f035 Merge pull request #378 from cuviper/indexes
  • e7e4de4 Correct "indexes" to "indices" in Keys doc
  • a34d7ae Merge pull request #377 from waywardmonkeys/update-to-rand-0.9
  • b8bdead Upgrade dev-dependency rand to 0.9
  • 3c1aa95 Make slice PartialEq more generic
  • Additional commits viewable in compare view

Updates indoc from 2.0.5 to 2.0.6

Release notes

Sourced from indoc's releases.

2.0.6

  • Documentation improvements
Commits
  • f5934e4 Release 2.0.6
  • 382de61 Point standard library links to stable
  • aed1b60 Unset doc-scrape-examples for lib target
  • 3840e47 More precise gitignore patterns
  • 8304a10 Prevent upload-artifact step from causing CI failure
  • eac624b Work around needless_raw_string_hashes pedantic clippy lint in test
  • 64949e1 Resolve needless_lifetimes clippy lint
  • 0d37b42 Ignore needless_lifetimes clippy lint
  • 78289e3 Upload CI Cargo.lock for reproducing failures
  • 9ee9ca9 Fill in ignore reasons in all #[ignore] attributes
  • Additional commits viewable in compare view

Updates int-enum from 1.1.2 to 1.2.0

Commits

Updates itoa from 1.0.14 to 1.0.15

Release notes

Sourced from itoa's releases.

1.0.15

  • Documentation improvements
Commits
  • e2766b8 Release 1.0.15
  • a136ce8 Point standard library links to stable
  • ecc7fae Convert html links to intra-doc links
  • 94fea8f Unset doc-scrape-examples for lib target
  • 758499d More precise gitignore patterns
  • See full diff in compare view

Updates pest from 2.7.15 to 2.8.0

Release notes

Sourced from pest's releases.

v2.8.0

What's Changed

A new rule PUSH_LITERAL(...).

PUSH_LITERAL("a"): This rule always matches and never consumes any input, and it pushes "a" to the stack. The argument must be a literal.

[!note] You need to enable the "grammar-extras" feature as mentioned in the semantic versioning notes below in order to use this feature.

This new rule accomplishes the goals of pest-parser/pest#880 (in a slightly different way). Instead of PUSH_OTHER("-", " "), this is just PUSH_LITERAL(" "). If you wanted to match A and then push B, you just combine them via a sequence: "-" ~ PUSH_LITERAL(" ").

This can be used to generalize quoted strings to a pair of matching but non-equal delimiters. For example, many programming languages let you express strings using either double or single quotes, and don't require escaping of the other:

string = ${ PUSH( "\"" | "'") ~ quoted_char* ~ POP }
quoted_char = @{!PEEK ~ ANY } // simple version without escape sequences

// will parse "a'b" or 'a"b'

This happens to work because the starting and ending char are the same, but that's not always desirable. For example, we may want to allow strings to be delimited by either ( ... ) or < ... >, with similar rules as above, such that (a>) and <a)> are both valid.

With PUSH_LITERAL, this becomes:

string = ${ quote_open ~ quoted_char* ~ POP }
quote_open = @{
  ( "(" ~ PUSH_LITERAL(")") )
| ( "<" ~ PUSH_LITERAL(">") )
}
quoted_char = @{!PEEK ~ ANY } // simple version without escape sequences

New Contributors

Full Changelog: pest-parser/pest@v2.7.15...v2.8.0

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

... (truncated)

Commits

Updates pest_derive from 2.7.15 to 2.8.0

Release notes

Sourced from pest_derive's releases.

v2.8.0

What's Changed

A new rule PUSH_LITERAL(...).

PUSH_LITERAL("a"): This rule always matches and never consumes any input, and it pushes "a" to the stack. The argument must be a literal.

[!note] You need to enable the "grammar-extras" feature as mentioned in the semantic versioning notes below in order to use this feature.

This new rule accomplishes the goals of pest-parser/pest#880 (in a slightly different way). Instead of PUSH_OTHER("-", " "), this is just PUSH_LITERAL(" "). If you wanted to match A and then push B, you just combine them via a sequence: "-" ~ PUSH_LITERAL(" ").

This can be used to generalize quoted strings to a pair of matching but non-equal delimiters. For example, many programming languages let you express strings using either double or single quotes, and don't require escaping of the other:

string = ${ PUSH( "\"" | "'") ~ quoted_char* ~ POP }
quoted_char = @{!PEEK ~ ANY } // simple version without escape sequences

// will parse "a'b" or 'a"b'

This happens to work because the starting and ending char are the same, but that's not always desirable. For example, we may want to allow strings to be delimited by either ( ... ) or < ... >, with similar rules as above, such that (a>) and <a)> are both valid.

With PUSH_LITERAL, this becomes:

string = ${ quote_open ~ quoted_char* ~ POP }
quote_open = @{
  ( "(" ~ PUSH_LITERAL(")") )
| ( "<" ~ PUSH_LITERAL(">") )
}
quoted_char = @{!PEEK ~ ANY } // simple version without escape sequences

New Contributors

Full Changelog: pest-parser/pest@v2.7.15...v2.8.0

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

... (truncated)

Commits

Updates rstest from 0.24.0 to 0.25.0

Release notes

Sourced from rstest's releases.

0.25.0

What's Changed

New Contributors

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

Changelog

Sourced from rstest's changelog.

[0.25.0] 2025/3/2

Changed

  • Append generated test macro so next test macros are aware of it (see #291 thanks to @​kezhuw).

Add

  • Added a #[mode = ...] attribute to be used with the #[files(...)] attribute to change the way the files get passed to the test. (see #295 thanks to @​lucascool12)
Commits
  • 8d80cea Prepare release
  • eb1f228 Make clippy happy
  • f570b06 Avoid concurrent manifest changes in integration tests
  • 8551eb8 feat: add include_str and include_bytes file input behaviour
  • e0b735e Append generated test macro so next test macros are aware of it
  • 154d0b0 Prepare develop
  • See full diff in compare view

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates serde_derive from 1.0.218 to 1.0.219

Release notes

Sourced from serde_derive's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates thiserror from 2.0.11 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)
Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates time from 0.3.37 to 0.3.41

Release notes

Sourced from time's releases.

v0.3.41

See the changelog for details.

v0.3.40

See the changelog for details.

v0.3.39

See the changelog for details.

v0.3.38

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.41 [2025-03-23]

Fixed

  • Compatibility with the latest release of deranged. This fix is permanent and covers future similar changes upstream.

0.3.40 [2025-03-18]

Added

  • Visibility modifiers may now be added to the mod generated by time::sere::format_description!.

0.3.39 [2025-03-06]

Fixed

  • Doc tests run successfully with the default feature set.
  • wasm builds work again.

Both of these were regressions in v0.3.38 and are now checked in CI.

0.3.38 [2025-03-05]

Added

  • The [year] component (in format descriptions) now supports a range modifier, which can be either standard or extended. The default is extended for backwards compatibility. This is intended as a manner to opt out of the extended range when the large-dates feature is enabled. When the large-dates feature is not enabled, the modifier has no effect.

  • UtcDateTime, which is semantically equivalent to an OffsetDateTime with UTC as its offset. The advantage is that it is the same size as a PrimitiveDateTime and has improved operability with well-known formats.

    As part of this, there were some other additions:

    • utc_datetime! macro, which is similar to the datetime! macro but constructs a UtcDateTime.
    • PrimitiveDateTime::as_utc
    • OffsetDateTime::to_utc
    • OffsetDateTime::checked_to_utc
  • time::serde::timestamp::milliseconds_i64, which is a module to serialize/deserialize timestamps as the Unix timestamp. The pre-existing module does this as an i128 where an i64 would suffice. This new module should be preferred.

Changed

  • error::Format has had its source() implementation changed to no longer return a boxed value from the ComponentRange variant. If you were explicitly expecting this, you will need to update your code. The method API remains unchanged.
  • [year repr:century] supports single-digit values.
  • All format_into methods accept ?Sized references.

... (truncated)

Commits
  • cc35dcf v0.3.41 release
  • 6de297b v0.3.40 release
  • c386cac Move days_in_month to time-core
  • 84f3a75 Remove two-way conversion in arithmetic
  • 79a4b62 Move interop between datetime types to single mod
  • 56187f1 Remove region markers
  • 1bc4ce0 Update to deranged 0.4
  • ad945a9 Fix UI tests, build on MSRV
  • b2b602a Permit visibility in serde::format_description!
  • e3dcbd3 Pull floored division algorithm from stdlib
  • Additional commits viewable in compare view

Updates tinyset from 0.5.1 to 0.5.2

Changelog

Sourced from tinyset's changelog.

  • 0.5.2 - Mar. 9, 2025

    • Increase MRSV to 1.63 due to libc dependency. Use rust-version to avoid a major version bump.

    • New feature deterministic_iteration.

  • 0.5.0 - Oct. 12, 2024

    • Implement Clone for IntoIter. This change in implementation also removes a use of unsafe.

    • Bump MSRV to 1.61 due to dependencies.

    • Fixed panic when removing a nonexistent value from a full hash table.

    • Fix UB if an allocation exceeds isize::MAX.

Commits

Updates uuid from 1.15.1 to 1.16.0

Release notes

Sourced from uuid's releases.

v1.16.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.15.1...v1.16.0

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 17 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.96` | `1.0.97` |
| [bigdecimal](https://github.com/akubera/bigdecimal-rs) | `0.4.7` | `0.4.8` |
| [cached](https://github.com/jaemk/cached) | `0.54.0` | `0.55.1` |
| [either](https://github.com/rayon-rs/either) | `1.14.0` | `1.15.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.7.1` | `2.8.0` |
| [indoc](https://github.com/dtolnay/indoc) | `2.0.5` | `2.0.6` |
| [int-enum](https://github.com/Juici/int-enum-rs) | `1.1.2` | `1.2.0` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.14` | `1.0.15` |
| [pest](https://github.com/pest-parser/pest) | `2.7.15` | `2.8.0` |
| [pest_derive](https://github.com/pest-parser/pest) | `2.7.15` | `2.8.0` |
| [rstest](https://github.com/la10736/rstest) | `0.24.0` | `0.25.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.11` | `2.0.12` |
| [time](https://github.com/time-rs/time) | `0.3.37` | `0.3.41` |
| [tinyset](https://github.com/droundy/tinyset) | `0.5.1` | `0.5.2` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.15.1` | `1.16.0` |


Updates `anyhow` from 1.0.96 to 1.0.97
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.96...1.0.97)

Updates `bigdecimal` from 0.4.7 to 0.4.8
- [Release notes](https://github.com/akubera/bigdecimal-rs/releases)
- [Commits](akubera/bigdecimal-rs@v0.4.7...v0.4.8)

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

Updates `either` from 1.14.0 to 1.15.0
- [Commits](rayon-rs/either@1.14.0...1.15.0)

Updates `indexmap` from 2.7.1 to 2.8.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.7.1...2.8.0)

Updates `indoc` from 2.0.5 to 2.0.6
- [Release notes](https://github.com/dtolnay/indoc/releases)
- [Commits](dtolnay/indoc@2.0.5...2.0.6)

Updates `int-enum` from 1.1.2 to 1.2.0
- [Release notes](https://github.com/Juici/int-enum-rs/releases)
- [Commits](https://github.com/Juici/int-enum-rs/commits)

Updates `itoa` from 1.0.14 to 1.0.15
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.14...1.0.15)

Updates `pest` from 2.7.15 to 2.8.0
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.15...v2.8.0)

Updates `pest_derive` from 2.7.15 to 2.8.0
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.15...v2.8.0)

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

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `serde_derive` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `thiserror` from 2.0.11 to 2.0.12
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.11...2.0.12)

Updates `time` from 0.3.37 to 0.3.41
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.37...v0.3.41)

Updates `tinyset` from 0.5.1 to 0.5.2
- [Changelog](https://github.com/droundy/tinyset/blob/master/CHANGELOG.md)
- [Commits](https://github.com/droundy/tinyset/commits/0.5.2)

Updates `uuid` from 1.15.1 to 1.16.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.15.1...v1.16.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: bigdecimal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: cached
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: either
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: indoc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: int-enum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: itoa
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pest_derive
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: rstest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tinyset
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

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

github-actions bot commented Apr 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 02286f6 into main Apr 1, 2025
3 checks passed
@senekor senekor deleted the dependabot/cargo/local-registry/all-6a0ac4d236 branch April 1, 2025 17:59
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