jwodder / labelmaker

Create & enforce sets of labels in GitHub repositories
MIT License
2 stars 0 forks source link

[cargo](deps): Bump the deps group with 11 updates #50

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

Bumps the deps group with 11 updates:

Package From To
anyhow 1.0.81 1.0.82
rstest 0.18.2 0.19.0
bumpalo 3.15.4 3.16.0
cc 1.0.91 1.0.94
either 1.10.0 1.11.0
encoding_rs 0.8.33 0.8.34
getrandom 0.2.13 0.2.14
proc-macro2 1.0.79 1.0.80
quote 1.0.35 1.0.36
rstest_macros 0.18.2 0.19.0
winnow 0.6.5 0.6.6

Updates anyhow from 1.0.81 to 1.0.82

Release notes

Sourced from anyhow's releases.

1.0.82

  • Documentation improvements
Commits
  • 074bdea Release 1.0.82
  • 47a4fbf Merge pull request #360 from dtolnay/docensure
  • c5af1db Make ensure's doc comment apply to the cfg(not(doc)) macro too
  • bebc7a2 Revert "Temporarily disable miri on doctests"
  • f2c4db9 Update ui test suite to nightly-2024-03-31
  • 028cbee Explicitly install a Rust toolchain for cargo-outdated job
  • 7a4cac5 Merge pull request #358 from dtolnay/workspacewrapper
  • 939db01 Apply RUSTC_WORKSPACE_WRAPPER
  • 9f84a37 Temporarily disable miri on doctests
  • 45e5a58 Ignore dead code lint in test
  • Additional commits viewable in compare view


Updates rstest from 0.18.2 to 0.19.0

Release notes

Sourced from rstest's releases.

Introduce MSRV and minor fixes

Changelog

Sourced from rstest's changelog.

[0.19.0] 2024/4/9

Changed

  • Defined rust-version for each crate (see #227)

Fixed

  • #[once] fixtures now require the returned type to be Sync to prevent UB when tests are executed in parallel. (see #235 for more details)

  • #[future(awt)] and #[awt] now properly handle mutable (mut) parameters by treating futures as immutable and treating the awaited rebinding as mutable.

Commits


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: https://github.com/rust-lang/cc-rs/compare/1.0.93...1.0.94

1.0.93

What's Changed

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.92...1.0.93

1.0.92

What's Changed

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.91...1.0.92

Commits


Updates either from 1.10.0 to 1.11.0

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


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 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 rstest_macros from 0.18.2 to 0.19.0

Release notes

Sourced from rstest_macros's releases.

Introduce MSRV and minor fixes

Changelog

Sourced from rstest_macros's changelog.

[0.19.0] 2024/4/9

Changed

  • Defined rust-version for each crate (see #227)

Fixed

  • #[once] fixtures now require the returned type to be Sync to prevent UB when tests are executed in parallel. (see #235 for more details)

  • #[future(awt)] and #[awt] now properly handle mutable (mut) parameters by treating futures as immutable and treating the awaited rebinding as mutable.

Commits


Updates winnow from 0.6.5 to 0.6.6

Changelog

Sourced from winnow's changelog.

[0.6.6] - 2024-04-11

Fixes

  • Add impl ErrorConvert for ContextError so it can be used with bit parsing
Commits
  • 73211ad chore: Release
  • 9b890f1 docs: Update changelog
  • 92b008e Merge pull request #500 from Lexicality/errorcontext-bits-compatability
  • 40a0a15 feat(error): Add impl ErrorConvert for ContextError
  • 8512ab7 chore(ci): Test latest deps like regular tests
  • 58154a6 chore(ci): Update for new miri in rust-next
  • 3ba0f16 chore(ci): Generalize miri
  • 45103fb Merge pull request #499 from irevoire/remove-useless-dep
  • a314cee chore: Remove useless escargot dependency
  • 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 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
codecov[bot] commented 5 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 82.65%. Comparing base (500239d) to head (45d49cc).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #50 +/- ## ======================================= Coverage 82.65% 82.65% ======================================= Files 7 7 Lines 3176 3176 ======================================= Hits 2625 2625 Misses 551 551 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.