Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the lock group with 16 updates #1047

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 15, 2024

Bumps the lock group with 16 updates:

Package From To
either 1.10.0 1.11.0
pretty_env_logger 0.4.0 0.5.0
bitflags 1.3.2 2.4.2
aho-corasick 0.7.20 1.1.2
itertools 0.10.5 0.12.1
quote 1.0.35 1.0.36
proc-macro2 1.0.79 1.0.80
syn 1.0.109 2.0.52
allocator-api2 0.2.16 0.2.18
async-trait 0.1.79 0.1.80
bumpalo 3.15.4 3.16.0
cc 1.0.91 1.0.94
combine 4.6.6 4.6.7
crc 3.2.0 3.2.1
encoding_rs 0.8.33 0.8.34
getrandom 0.2.13 0.2.14

Updates either from 1.10.0 to 1.11.0

Commits

Updates pretty_env_logger from 0.4.0 to 0.5.0

Commits

Updates bitflags from 1.3.2 to 2.4.2

Release notes

Sourced from bitflags's releases.

2.4.2

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.4.1...2.4.2

2.4.1

What's Changed

Full Changelog: bitflags/bitflags@2.4.0...2.4.1

2.4.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.3.3...2.4.0

2.3.3

Changes to -=

The -= operator was incorrectly changed to truncate bits that didn't correspond to valid flags in 2.3.0. This has been fixed up so it once again behaves the same as - and difference.

Changes to !

The ! operator previously called Self::from_bits_truncate, which would truncate any bits that only partially overlapped with a valid flag. It will now use bits & Self::all().bits(), so any bits that overlap any bits specified by any flag will be respected. This is unlikely to have any practical implications, but enables defining a flag like const ALL = !0 as a way to signal that any bit pattern is a known set of flags.

... (truncated)

Changelog

Sourced from bitflags's changelog.

2.4.2

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.4.1...2.4.2

2.4.1

What's Changed

Full Changelog: bitflags/bitflags@2.4.0...2.4.1

2.4.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.3.3...2.4.0

2.3.3

Changes to -=

The -= operator was incorrectly changed to truncate bits that didn't correspond to valid flags in 2.3.0. This has been fixed up so it once again behaves the same as - and difference.

Changes to !

The ! operator previously called Self::from_bits_truncate, which would truncate any bits that only partially overlapped with a valid flag. It will now use bits & Self::all().bits(), so any bits that overlap any bits specified by any flag will be respected. This is unlikely to have any practical implications, but enables defining a flag like const ALL = !0 as a way to signal that any bit pattern is a known set of flags.

... (truncated)

Commits
  • a5f9ce2 Merge pull request #394 from KodrAus/cargo/2.4.2
  • 6924249 prepare for 2.4.2 release
  • 1f9f186 Merge pull request #392 from dtolnay-contrib/localmacros
  • d96915e Update ui tests
  • 72b712a Delete local_inner_macros from exported macros
  • 42d6e9d Change all local macro calls to call through $crate::
  • b988b1a Merge pull request #393 from dtolnay-contrib/lint
  • 8e014cc Remove old unused_tuple_struct_fields lint
  • 586d819 Merge pull request #388 from GnomedDev/packed-internal
  • 843cc04 Add compile-pass test
  • Additional commits viewable in compare view

Updates aho-corasick from 0.7.20 to 1.1.2

Commits
  • d84a507 1.1.2
  • 0c3802f dfa: fix performance bug when building a DFA
  • 12025c5 doc: add a FIXME about a perf problem
  • 3c475c5 1.1.1
  • 3c811c2 teddy: replace _mm_extract_epi64 with transmute
  • 3ed2c38 benchmarks: start work on a more curated set of benchmarks
  • dd84b6d benchmarks: rename 'curated' to 'regexcurated'
  • 081a22f 1.1.0
  • 483b8a5 doc: fix wording that used to only refer to x86-64
  • f9d633f benchmarks: add x86_64 measurements
  • Additional commits viewable in compare view

Updates itertools from 0.10.5 to 0.12.1

Changelog

Sourced from itertools's changelog.

0.12.1

Added

  • Documented iteration order guarantee for Itertools::[tuple_]combinations (#822)
  • Documented possible panic in iterate (#842)
  • Implemented Clone and Debug for Diff (#845)
  • Implemented Debug for WithPosition (#859)
  • Implemented Eq for MinMaxResult (#838)
  • Implemented From<EitherOrBoth<A, B>> for Option<Either<A, B>> (#843)
  • Implemented PeekingNext for RepeatN (#855)

Changed

  • Made CoalesceBy lazy (#801)
  • Optimized Filter[Map]Ok::next, Itertools::partition, Unique[By]::next[_back] (#818)
  • Optimized Itertools::find_position (#837)
  • Optimized Positions::next[_back] (#816)
  • Optimized ZipLongest::fold (#854)
  • Relaxed Debug bounds for GroupingMapBy (#860)
  • Specialized ExactlyOneError::fold (#826)
  • Specialized Interleave[Shortest]::fold (#849)
  • Specialized MultiPeek::fold (#820)
  • Specialized PadUsing::[r]fold (#825)
  • Specialized PeekNth::fold (#824)
  • Specialized Positions::[r]fold (#813)
  • Specialized PutBackN::fold (#823)
  • Specialized RepeatN::[r]fold (#821)
  • Specialized TakeWhileInclusive::fold (#851)
  • Specialized ZipLongest::rfold (#848)

Notable Internal Changes

  • Added test coverage in CI (#847, #856)
  • Added semver check in CI (#784)
  • Enforced clippy in CI (#740)
  • Enforced rustdoc in CI (#840)
  • Improved specialization tests (#807)
  • More specialization benchmarks (#806)

0.12.0

Breaking

  • Made take_while_inclusive consume iterator by value (#709)
  • Added Clone bound to Unique (#777)

Added

  • Added Itertools::try_len (#723)
  • Added free function sort_unstable (#796)
  • Added GroupMap::fold_with (#778, #785)
  • Added PeekNth::{peek_mut, peek_nth_mut} (#716)
  • Added PeekNth::{next_if, next_if_eq} (#734)
  • Added conversion into (Option<A>,Option<B>) to EitherOrBoth (#713)

... (truncated)

Commits
  • 98d3978 Prepare v0.12.1 release
  • dffac1f Bump obi1kenobi/cargo-semver-checks-action from 2.2 to 2.3
  • 00998a4 CoalesceBy: missing field in Debug
  • a0411d6 CombinationsWithReplacement: use a boxed slice internally
  • 8dd75f1 Permutations: use boxed slices internally
  • b785403 ExactlyOneError: implement Debug differently
  • 7a1c22b FlattenOk: Debug with macro
  • 94452e3 GroupingMapBy: fix Debug implementation
  • 2e325a0 TakeWhileInclusive: missing field in Debug
  • a48c5b4 WithPosition: implement Debug
  • Additional commits viewable in compare view

Updates quote from 1.0.35 to 1.0.36

Release notes

Sourced from quote's releases.

1.0.36

  • Documentation improvements
Commits
  • 5d4880c Release 1.0.36
  • 1dd7ce7 Merge pull request #273 from dtolnay/doc
  • 0bc5d12 Apply doc comment to cfg(not(doc)) macros too
  • c295f5c Revert "Temporarily disable miri on doctests"
  • 435bd1b Update ui test suite to nightly-2024-03-31
  • cc3847d Explicitly install a Rust toolchain for cargo-outdated job
  • 6259d49 Temporarily disable miri on doctests
  • bdb4b59 Update ui test suite to nightly-2024-02-08
  • c2aeca9 Update ui test suite to nightly-2024-01-31
  • 376a061 Merge pull request #270 from dtolnay/bench
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.79 to 1.0.80

Release notes

Sourced from proc-macro2's releases.

1.0.80

  • Add Literal::byte_character constructor (#449)
  • Add Literal::c_string constructor #450)
Commits
  • da51f8d Release 1.0.80
  • 392fa6c Ignore needless_pass_by_value pedantic clippy lint in test
  • 1ff5c1f Ignore needless_raw_string_hashes pedantic clippy lint in test
  • 0c9449e Import some Literal tests from libproc_macro
  • 28c87ad Add tests of negative literal construction
  • c61f5db Add some tests of cstr raw literals
  • d50dcd9 Merge pull request #450 from dtolnay/cstr
  • 70a804b Add Literal::c_string constructor
  • 45730bc Adjust Literal constructor argument names to match those in libproc_macro
  • 26d1d3f Merge pull request #449 from dtolnay/bytechar
  • Additional commits viewable in compare view

Updates syn from 1.0.109 to 2.0.52

Release notes

Sourced from syn's releases.

2.0.52

  • Add an expression parser that uses match-arm's boundary rules (#1593)

2.0.51

  • Resolve non_local_definitions warnings in generated code under rustc 1.78-nightly

2.0.50

  • Fix unused_imports warnings when compiled by rustc 1.78

2.0.49

  • Improve error location when parsing from an empty string literal using LitStr::parse (#1590)

2.0.48

  • Improve error message on unexpected token after else (#1578)

2.0.47

  • Improve error messages related to proc_macro::LexError (#1575)

2.0.46

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

2.0.45

  • Parse unsupported expressions in enum discriminants of DeriveInput as Expr::Verbatim in non-"full" mode, instead of error (#1513)
  • Support parsing PatType with parse_quote! (#1573)

2.0.44

  • Documentation improvements

2.0.43

  • Insert trailing comma if not already present when printing a 1-tuple in pattern position (#1553)

2.0.42

  • Documentation improvements

2.0.41

  • Support parsing syn::Field in parse_quote! (#1548)

2.0.40

2.0.39

  • Fix parsing of return expression in match guards (#1528)
  • Improve error message on labeled loop as value expression for break (#1531)

2.0.38

  • Fix "method 'peek' has an incompatible type for trait" error when defining bool as a custom keyword (#1518, thanks @​Vanille-N)

2.0.37

  • Work around incorrect future compatibility warning in rustc 1.74.0-nightly

... (truncated)

Commits
  • 07ede6a Release 2.0.52
  • acbcfbc Merge pull request #1593 from dtolnay/boundary
  • 4924a99 Add an expression parser that uses match-arm's boundary rules
  • e06122b Resolve unnecessary_get_then_check clippy lint
  • 018fc5a Update test suite to nightly-2024-02-27
  • 5e15a9b Release 2.0.51
  • 7e0d4e1 Resolve non_local_definitions warning in debug impls
  • 8667ad9 Ignore module_name_repetitions pedantic clippy lint in codegen
  • 1fc3200 Update test suite to nightly-2024-02-26
  • 07a2065 Update test suite to nightly-2024-02-23
  • Additional commits viewable in compare view

Updates allocator-api2 from 0.2.16 to 0.2.18

Commits
  • 100147d Bump patch version
  • b0f3849 Update tests
  • d96530e Fix warning
  • 4b115a4 Bump patch version
  • c50521d Merge pull request #13 from jess-sol/main
  • 4d178c7 Add Write implementation for Vec
  • 738620d Merge pull request #11 from cloneable/fix-vec-in-zero-elements
  • 7f86d4b Fix vec![in] without elements to use correct allocator
  • 6a67e3c Merge pull request #4 from decathorpe/main
  • c0b5043 align included license files with Rust project best practices
  • See full diff in compare view

Updates async-trait from 0.1.79 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • See full diff in compare view

Updates bumpalo from 3.15.4 to 3.16.0

Changelog

Sourced from bumpalo's changelog.

3.16.0

Released 2024-04-08.

Added

  • Added an optional, off-by-default dependency on the serde crate. Enabling this dependency allows you to serialize Bumpalo's collection and box types. Deserialization is not implemented, due to constraints of the deserialization trait.

Commits

Updates cc from 1.0.91 to 1.0.94

Release notes

Sourced from cc's releases.

1.0.94

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.93...1.0.94

1.0.93

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.92...1.0.93

1.0.92

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.91...1.0.92

Commits

Updates combine from 4.6.6 to 4.6.7

Changelog

Sourced from combine's changelog.

v4.6.7 (2024-04-10)

  • perf: avoid initializing huge buffers in the stream decoder

Commits
  • f726b8f chore: Release combine version 4.6.7
  • 06686b3 Updated changelog
  • ca74a14 Merge pull request #365 from artemrakov/perf_init_buffers
  • 5e6bbed perf: avoid initializing huge buffers
  • 6cac1bd Merge pull request #359 from hackaugusto/hacka-return-position-impl
  • 9bc45f7 docs: remove mention to nightly
  • da5b684 Merge pull request #360 from Marwes/cargo
  • a88b5eb chore: Update CI to run against rust 1.61
  • 805862b Merge pull request #353 from softmoth/rust-24159-is-fixed
  • 71ac3e5 test: Fix readme tests
  • Additional commits viewable in compare view

Updates crc from 3.2.0 to 3.2.1

Commits

Updates encoding_rs from 0.8.33 to 0.8.34

Commits
  • a0c5c57 Increment version number to 0.8.34
  • 8bcba0b Move a negation to the right place and cargo fmt
  • 29668e3 Move a negation to the right place
  • dbf673e Work around bad SIMD codegen on 32-bit ARM
  • 3c96213 Add rust-version to Cargo.toml
  • 98f3c6a Update README
  • 598edc8 Port from packed_simd crate to portable_simd feature (aarch64 part)
  • 2d198c8 Port from packed_simd crate to portable_simd feature (x86_64 part)
  • 9217fd2 Remove the remains of Travis
  • 966fc0a wip mem
  • Additional commits viewable in compare view

Updates getrandom from 0.2.13 to 0.2.14

Changelog

Sourced from getrandom's changelog.

[0.2.14] - 2024-04-08

Fixed

  • Enable /dev/urandom fallback for MUSL-based Linux targets #408

#408: rust-random/getrandom#408

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 lock group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [either](https://github.com/rayon-rs/either) | `1.10.0` | `1.11.0` |
| [pretty_env_logger](https://github.com/seanmonstar/pretty-env-logger) | `0.4.0` | `0.5.0` |
| [bitflags](https://github.com/bitflags/bitflags) | `1.3.2` | `2.4.2` |
| [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `0.7.20` | `1.1.2` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.10.5` | `0.12.1` |
| [quote](https://github.com/dtolnay/quote) | `1.0.35` | `1.0.36` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.79` | `1.0.80` |
| [syn](https://github.com/dtolnay/syn) | `1.0.109` | `2.0.52` |
| [allocator-api2](https://github.com/zakarumych/allocator-api2) | `0.2.16` | `0.2.18` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.79` | `0.1.80` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.15.4` | `3.16.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.91` | `1.0.94` |
| [combine](https://github.com/Marwes/combine) | `4.6.6` | `4.6.7` |
| [crc](https://github.com/mrhooray/crc-rs) | `3.2.0` | `3.2.1` |
| [encoding_rs](https://github.com/hsivonen/encoding_rs) | `0.8.33` | `0.8.34` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.13` | `0.2.14` |


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

Updates `pretty_env_logger` from 0.4.0 to 0.5.0
- [Commits](seanmonstar/pretty-env-logger@v0.4.0...v0.5.0)

Updates `bitflags` from 1.3.2 to 2.4.2
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@1.3.2...2.4.2)

Updates `aho-corasick` from 0.7.20 to 1.1.2
- [Commits](BurntSushi/aho-corasick@0.7.20...1.1.2)

Updates `itertools` from 0.10.5 to 0.12.1
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.10.5...v0.12.1)

Updates `quote` from 1.0.35 to 1.0.36
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.35...1.0.36)

Updates `proc-macro2` from 1.0.79 to 1.0.80
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.79...1.0.80)

Updates `syn` from 1.0.109 to 2.0.52
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@1.0.109...2.0.52)

Updates `allocator-api2` from 0.2.16 to 0.2.18
- [Changelog](https://github.com/zakarumych/allocator-api2/blob/main/CHANGELOG.md)
- [Commits](zakarumych/allocator-api2@v0.2.16...v0.2.18)

Updates `async-trait` from 0.1.79 to 0.1.80
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.79...0.1.80)

Updates `bumpalo` from 3.15.4 to 3.16.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.15.4...3.16.0)

Updates `cc` from 1.0.91 to 1.0.94
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.91...1.0.94)

Updates `combine` from 4.6.6 to 4.6.7
- [Changelog](https://github.com/Marwes/combine/blob/master/CHANGELOG.md)
- [Commits](Marwes/combine@v4.6.6...v4.6.7)

Updates `crc` from 3.2.0 to 3.2.1
- [Release notes](https://github.com/mrhooray/crc-rs/releases)
- [Commits](mrhooray/crc-rs@3.2.0...3.2.1)

Updates `encoding_rs` from 0.8.33 to 0.8.34
- [Commits](hsivonen/encoding_rs@v0.8.33...v0.8.34)

Updates `getrandom` from 0.2.13 to 0.2.14
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.13...v0.2.14)

---
updated-dependencies:
- dependency-name: either
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: lock
- dependency-name: pretty_env_logger
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: lock
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: lock
- dependency-name: aho-corasick
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: lock
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: lock
- dependency-name: quote
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: lock
- dependency-name: allocator-api2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: bumpalo
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: lock
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: combine
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: crc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: encoding_rs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: lock
- dependency-name: getrandom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: lock
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the A-dependencies Area: crate dependencies label Apr 15, 2024
@teloxidebot
Copy link
Collaborator

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Hirrolot (or someone else) soon.

Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (S-waiting-on-review and S-waiting-on-author) stays updated, invoking these commands when appropriate:

  • @teloxidebot author: the review is finished, PR author should check the comments and take action accordingly
  • @teloxidebot review: the author is ready for a review, this PR will be queued again in the reviewer's queue

@teloxidebot teloxidebot added the S-waiting-on-review Status: Awaiting review from the assignee label Apr 15, 2024
@WaffleLapkin
Copy link
Member

can we stop doing nightly detection? :/

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 20, 2024

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

@dependabot dependabot bot closed this Apr 20, 2024
@dependabot dependabot bot deleted the dependabot/cargo/lock-19f8759f97 branch April 20, 2024 14:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-dependencies Area: crate dependencies S-waiting-on-review Status: Awaiting review from the assignee
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants