jwodder / labelmaker

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

[cargo](deps): Bump the deps group with 9 updates #26

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the deps group with 9 updates:

Package From To
clap 4.4.7 4.4.8
serde 1.0.190 1.0.192
tokio 1.33.0 1.34.0
cc 1.0.83 1.0.84
errno 0.3.5 0.3.6
getrandom 0.2.10 0.2.11
http 0.2.9 0.2.10
linux-raw-sys 0.4.10 0.4.11
toml 0.8.6 0.8.8

Updates clap from 4.4.7 to 4.4.8

Release notes

Sourced from clap's releases.

v4.4.8

[4.4.8] - 2023-11-10

Features

  • Add Command::flatten_help to allow git stash -h like help for subcommands
Changelog

Sourced from clap's changelog.

[4.4.8] - 2023-11-10

Features

  • Add Command::flatten_help to allow git stash -h like help for subcommands
Commits
  • 3aeea91 chore: Release
  • 1add9a7 docs: Update changelog
  • 6b2a2cc Merge pull request #5206 from epage/flatten
  • 9c0f7a7 fix(help): Recurse help flattening
  • 4bef91c refactor(help): Pull out flat subcommands
  • c9a7ef0 fix(help): Gloss over globals with flatten
  • 9e5f93d fix(help): Be consistent in long/short help
  • 66d2bcb feat(help): Allow flattening help
  • 3383242 Merge pull request #5205 from epage/flatten-refactor
  • caf5cdc feat(help): Allow flattening usage
  • Additional commits viewable in compare view


Updates serde from 1.0.190 to 1.0.192

Release notes

Sourced from serde's releases.

v1.0.192

v1.0.191

  • Documentation improvements
Commits
  • 4676abd Release 1.0.192
  • 35700eb Merge pull request #2646 from robsdedude/fix/2643/allow-tag-field-in-untagged
  • 59892e7 Release 1.0.191
  • 97dd07a Merge pull request #2647 from dtolnay/doccfg
  • c8bc97c Document "rc" and "unstable" features on docs.rs
  • 9dacfbb Fill in more doc(cfg) attributes
  • 05c2509 Relocate cfg attrs into deref_impl
  • 64f949b Relocate cfg attrs into parse_ip_impl and parse_socket_impl
  • 3f339de Relocate cfg attrs into seq_impl and map_impl
  • 215c2b7 Relocate cfg attrs into forwarded_impl macro
  • Additional commits viewable in compare view


Updates tokio from 1.33.0 to 1.34.0

Release notes

Sourced from tokio's releases.

Tokio v1.34.0

Fixed

  • io: allow clear_readiness after io driver shutdown (#6067)
  • io: fix integer overflow in take (#6080)
  • io: fix I/O resource hang (#6134)
  • sync: fix broadcast::channel link (#6100)

Changed

  • macros: use ::core qualified imports instead of ::std inside tokio::test macro (#5973)

Added

  • fs: update cfg attr in fs::read_dir to include aix (#6075)
  • sync: add mpsc::Receiver::recv_many (#6010)
  • tokio: added vita target support (#6094)

#5973: tokio-rs/tokio#5973 #6067: tokio-rs/tokio#6067 #6080: tokio-rs/tokio#6080 #6134: tokio-rs/tokio#6134 #6100: tokio-rs/tokio#6100 #6075: tokio-rs/tokio#6075 #6010: tokio-rs/tokio#6010 #6094: tokio-rs/tokio#6094

Commits


Updates cc from 1.0.83 to 1.0.84

Release notes

Sourced from cc's releases.

1.0.84

Changes

This isn't a complete list, but I've tried to cover everything that is either significant, or could cause problems for people using cc in configurations not covered by our tests.

As always, please file bugs if you hit issues. cc is used in many more ways than we can possibly test (especially when cross-compiling or using tier-3 platforms).

Thanks.

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.83...1.0.84

Commits
  • 17f9e01 Release cc v1.0.84 (#898)
  • bb1220d added a function to remove flags (#885)
  • 4c0062d fix: Add apple tvos support (#881)
  • fcedb00 Optimization: Vendor jobserver impl and rm thread spawning in parallel compil...
  • bd25128 Merge pull request #894 from NobodyXu/bump-msrv
  • 3ff2368 Disable msrv checking on macos-latest
  • 022713c Bump MSRV to 1.53.0 and re-enable macos MSRV check
  • 6c9be16 Fix msrv CI: Check for --all-features (#890)
  • 59255ce Pass -Wno-unused-command-line-argument to clang in is_flag_supported (#886)
  • 9b569ae fix(flag_check): never link to avoid false positives (#839)
  • Additional commits viewable in compare view


Updates errno from 0.3.5 to 0.3.6

Changelog

Sourced from errno's changelog.

[0.3.6] - 2023-11-07

  • Add support for tvOS and watchOS #84

  • Added support for vita target #86

Commits


Updates getrandom from 0.2.10 to 0.2.11

Changelog

Sourced from getrandom's changelog.

[0.2.11] - 2023-11-08

Added

  • GNU/Hurd support #370

Changed

  • Renamed __getrandom_internal to __GETRANDOM_INTERNAL #369
  • Updated link to Hermit docs #374

#369: rust-random/getrandom#369 #370: rust-random/getrandom#370 #374: rust-random/getrandom#374

Commits


Updates http from 0.2.9 to 0.2.10

Release notes

Sourced from http's releases.

v0.2.10

What's Changed

  • Fix parsing of Authority to handle square brackets in incorrect order.
  • Fix HeaderMap::with_capacity() to handle arithmetic overflow.

New Contributors

Changelog

Sourced from http's changelog.

0.2.10 (November 10, 2023)

  • Fix parsing of Authority to handle square brackets in incorrect order.
  • Fix HeaderMap::with_capacity() to handle arithmetic overflow.
Commits
  • 818269d v0.2.10
  • b41d0b9 Resolve arith overflow on with_capacity (#628)
  • 25c1803 chore: fix typos (#633)
  • 1a04e71 docs: fix some spelling mistakes (#630)
  • 78e3d37 make miri happy
  • 4f28cbd early reject URI authority if too many ":" chars
  • 4756547 When parsing Uri authority, check that the square brackets are in the correct...
  • 746fce8 ci: only check msrv, not test
  • 20633e5 docs: remove references to defunct build method
  • 7b3c506 chore: fix lint about dropping Copy values
  • Additional commits viewable in compare view


Updates linux-raw-sys from 0.4.10 to 0.4.11

Commits


Updates toml from 0.8.6 to 0.8.8

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 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 11 months ago

Codecov Report

Merging #26 (a8e79b0) into master (d98eb4f) will not change coverage. The diff coverage is n/a.

@@           Coverage Diff           @@
##           master      #26   +/-   ##
=======================================
  Coverage   82.74%   82.74%           
=======================================
  Files           7        7           
  Lines        3269     3269           
=======================================
  Hits         2705     2705           
  Misses        564      564