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 21 updates #55

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the deps group with 21 updates:

Package From To
anstream 0.6.13 0.6.14
anstyle 1.0.6 1.0.7
serde 1.0.199 1.0.200
anstyle-parse 0.2.3 0.2.4
anstyle-query 1.0.2 1.0.3
anstyle-wincon 3.0.2 3.0.3
autocfg 1.2.0 1.3.0
base64 0.22.0 0.22.1
cc 1.0.95 1.0.96
colorchoice 1.0.0 1.0.1
libc 0.2.153 0.2.154
pest 2.7.9 2.7.10
pest_derive 2.7.9 2.7.10
pest_generator 2.7.9 2.7.10
pest_meta 2.7.9 2.7.10
relative-path 1.9.2 1.9.3
security-framework-sys 2.10.0 2.11.0
serde_derive 1.0.199 1.0.200
socket2 0.5.6 0.5.7
tokio-util 0.7.10 0.7.11
winnow 0.6.7 0.6.8

Updates anstream from 0.6.13 to 0.6.14

Commits


Updates anstyle from 1.0.6 to 1.0.7

Commits


Updates serde from 1.0.199 to 1.0.200

Release notes

Sourced from serde's releases.

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)
Commits


Updates anstyle-parse from 0.2.3 to 0.2.4

Commits


Updates anstyle-query from 1.0.2 to 1.0.3

Commits


Updates anstyle-wincon from 3.0.2 to 3.0.3

Commits


Updates autocfg from 1.2.0 to 1.3.0

Commits


Updates base64 from 0.22.0 to 0.22.1

Changelog

Sourced from base64's changelog.

0.22.1

  • Correct the symbols used for the predefined alphabet::BIN_HEX.
Commits
  • e144006 v0.22.1
  • 64cca59 Merge pull request #271 from JobanSD/patch-1
  • 838355e Correct BinHex 4.0 alphabet according to specifications
  • bf15ccf Merge pull request #270 from marshallpierce/mp/clippy
  • fc6aabe Appease clippy
  • 9a518a2 Merge pull request #267 from bdura/patch-1
  • d96c80f Merge branch 'marshallpierce:master' into patch-1
  • e8e4a22 docs: fix trailing ``` in mod.rs example
  • See full diff in compare view


Updates cc from 1.0.95 to 1.0.96

Release notes

Sourced from cc's releases.

1.0.96

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.95...1.0.96

Commits


Updates colorchoice from 1.0.0 to 1.0.1

Commits


Updates libc from 0.2.153 to 0.2.154

Release notes

Sourced from libc's releases.

0.2.154

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/libc/compare/0.2.153...0.2.154

Commits
  • b78d6a3 Merge pull request #3573 from Dirreke/update-libc0.2
  • 3111f6f Merge pull request #3600 from pcc/strtime
  • 4d836cc Merge pull request #3618 from devnexen/dfbsd_gtrandom
  • 23a1b4c Merge pull request #3638 from nielx/haiku-hrev57593-0.2
  • f4ab3e7 Merge pull request #3637 from ur4t/libc-0.2
  • 4d6fe50 Move strftime, strftime_l, strptime to linux_like
  • e79e95f adding getentropy/getrandom to dragonflybsd.
  • 8220683 Double quote variables in shell scripts
  • c0a6936 Add constant AT_MINSIGSTKSZ introduced by glibc 2.35
  • 1c7f8fc Haiku: synchronize with post R1-beta 4 changes in libc
  • Additional commits viewable in compare view


Updates pest from 2.7.9 to 2.7.10

Commits


Updates pest_derive from 2.7.9 to 2.7.10

Release notes

Sourced from pest_derive's releases.

v2.7.10

What's Changed

There was a performance regression in 2.7.9 due to the overhead from tracking for better error details. This is now disabled by default, but if you wish to use it, you can enable it via the pest::set_error_detail(true) call (before your parsing code starts).

Full Changelog: https://github.com/pest-parser/pest/compare/v2.7.9...v2.7.10

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.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }
Commits


Updates pest_generator from 2.7.9 to 2.7.10

Release notes

Sourced from pest_generator's releases.

v2.7.10

What's Changed

There was a performance regression in 2.7.9 due to the overhead from tracking for better error details. This is now disabled by default, but if you wish to use it, you can enable it via the pest::set_error_detail(true) call (before your parsing code starts).

Full Changelog: https://github.com/pest-parser/pest/compare/v2.7.9...v2.7.10

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.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }
Commits


Updates pest_meta from 2.7.9 to 2.7.10

Release notes

Sourced from pest_meta's releases.

v2.7.10

What's Changed

There was a performance regression in 2.7.9 due to the overhead from tracking for better error details. This is now disabled by default, but if you wish to use it, you can enable it via the pest::set_error_detail(true) call (before your parsing code starts).

Full Changelog: https://github.com/pest-parser/pest/compare/v2.7.9...v2.7.10

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.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }
Commits


Updates relative-path from 1.9.2 to 1.9.3

Release notes

Sourced from relative-path's releases.

1.9.3

What's Changed

Full Changelog: https://github.com/udoprog/relative-path/compare/1.9.0...1.9.3

Commits


Updates security-framework-sys from 2.10.0 to 2.11.0

Commits
  • f829e92 Bump
  • 8c89e67 Upgrade to bitflags 2
  • fedc8dc chore(doc): improve docs for subject item search option
  • 3619255 feat(search): add case-insensitive and subject item search options
  • 17f4078 Prefer keeping CFString
  • 3bf806d fixup: kSecAttrDescription -> kSecAttrComment for comment
  • 3a2b873 Add support for searching by access groups.
  • 588c313 Support account name, comment, description, service when adding items to the ...
  • See full diff in compare view


Updates serde_derive from 1.0.199 to 1.0.200

Release notes

Sourced from serde_derive's releases.

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)
Commits


Updates socket2 from 0.5.6 to 0.5.7

Changelog

Sourced from socket2's changelog.

0.5.7

Commits
  • c8146aa Release v0.5.7
  • 8685db5 Use consistent language in change log
  • 6923954 Add test for Socket::passcred/set_passcred and fix formatting.
  • 630c8a7 Add Socket::passcred/set_passcred for working with SO_PASSCRED.
  • 21ba660 Add MsgHdrMut::control_len to get how much of control buffer was filled.
  • c93cdcc Add MSG_CONFIRM and MSG_DONTROUTE to RecvFlags
  • See full diff in compare view


Updates tokio-util from 0.7.10 to 0.7.11

Commits
  • cdf9d99 chore: prepare tokio-util v0.7.11 (#6535)
  • f6eb1ee time: lazily init timers on first poll (#6512)
  • b7d4fba sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • 3c8d8e6 chore: fix latest rust-1.78.0 warnings (#6528)
  • e971a5e util: use FIFO ordering in WakeList (#6521)
  • 28439e2 time: clean up implementation (#6517)
  • d33fdd8 time: check for overflow in Interval::poll_tick (#6487)
  • 731dde2 runtime: clarify misleading use of UnsafeCell::with_mut (#6513)
  • 9ed5957 wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)
  • a73d6bf macros: #[cfg(not(test))] is no longer necessary for main macros (#6508)
  • Additional commits viewable in compare view


Updates winnow from 0.6.7 to 0.6.8

Changelog

Sourced from winnow's changelog.

[0.6.8] - 2024-05-06

Features

  • Support &mut [impl Parser] within alt
Commits
  • 1096fb1 chore: Release
  • e681961 docs: Update changelog
  • 8e562b9 Merge pull request #522 from epage/alt
  • 4ea9ddf Merge pull request #521 from DavidAntliff/space1-doc-fix
  • 52ad6bb feat(comb): Allow 'alt' on array refs
  • b738dfe Fix documentation for space1 combinator
  • 8ac78f7 docs(tutorial): Correct parse_bin_digits parser
  • 7b5fe80 Merge pull request #518 from epage/style
  • da5e85f style: Address warnings
  • 4617b91 Merge pull request #517 from YouSafe/patch-1
  • Additional commits viewable 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 4 months ago

Codecov Report

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

Project coverage is 82.65%. Comparing base (fee392b) to head (99e0c46).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #55 +/- ## ======================================= 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.