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 17 updates #32

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 8 months ago

Bumps the deps group with 17 updates:

Package From To
anyhow 1.0.75 1.0.76
cfgfifo 0.1.0 0.2.0
gh-token 0.1.5 0.1.6
patharg 0.3.0 0.4.0
reqwest 0.11.22 0.11.23
tokio 1.35.0 1.35.1
futures-core 0.3.29 0.3.30
futures-sink 0.3.29 0.3.30
futures-task 0.3.29 0.3.30
futures-util 0.3.29 0.3.30
hyper 0.14.27 0.14.28
object 0.32.1 0.32.2
openssl 0.10.61 0.10.62
pkg-config 0.3.27 0.3.28
proc-macro2 1.0.70 1.0.71
serde_spanned 0.6.4 0.6.5
winnow 0.5.28 0.5.30

Updates anyhow from 1.0.75 to 1.0.76

Release notes

Sourced from anyhow's releases.

1.0.76

  • Opt in to unsafe_op_in_unsafe_fn lint (#329)
Commits
  • 5cad3bf Release 1.0.76
  • d371a49 Merge pull request #329 from dtolnay/unsafeop
  • 07aac81 Fill in unsafe blocks inside unsafe functions
  • 5ea720d Turn on deny(unsafe_op_in_unsafe_fn)
  • 539e831 Detect whether unsafe_op_in_unsafe_fn lint is available
  • afb298e Label the compiler versions in build.rs with a comment and link
  • a205cc9 Add a funding file
  • 05e4132 Ignore struct_field_names pedantic clippy lint
  • 98921f8 Remove 'remember to update' reminder from Cargo.toml
  • 1ae9905 Ignore needless_raw_string_hashes clippy lint
  • Additional commits viewable in compare view


Updates cfgfifo from 0.1.0 to 0.2.0

Release notes

Sourced from cfgfifo's releases.

v0.2.0 — Buffering

  • Files opened by the load() & dump() methods & functions are now wrapped in std::io::BufReader/std::io::BufWriter
  • Added Flush variant to DumpError
Changelog

Sourced from cfgfifo's changelog.

v0.2.0 (2023-12-22)

  • Files opened by the load() & dump() methods & functions are now wrapped in std::io::BufReader/std::io::BufWriter
  • Added Flush variant to DumpError
Commits
  • 65e81f4 v0.2.0 — Buffering
  • 4eebe80 Buffer file I/O
  • 176640f These crate links seem to work now.
  • 8a84594 Remove irrelevant exclusion from end-of-file-fixer pre-commit hook
  • 8b3bfcd Linting
  • 4da3e53 Adjust test.yml
  • 6c5352e Looks like RON has enough support for internally-tagged enums for my purposes
  • 3889422 Better linting
  • See full diff in compare view


Updates gh-token from 0.1.5 to 0.1.6

Commits


Updates patharg from 0.3.0 to 0.4.0

Release notes

Sourced from patharg's releases.

v0.4.0 — FromStr

  • Added asynchronous category to crate metadata
  • Remove installation instructions from README
  • List all features in the library documentation
  • Increased MSRV to 1.70
  • InputArg and OutputArg now implement FromStr
Changelog

Sourced from patharg's changelog.

v0.4.0 (2023-12-18)

  • Added asynchronous category to crate metadata
  • Remove installation instructions from README
  • List all features in the library documentation
  • Increased MSRV to 1.70
  • InputArg and OutputArg now implement FromStr
Commits


Updates reqwest from 0.11.22 to 0.11.23

Release notes

Sourced from reqwest's releases.

v0.11.23

What's Changed

  • Add Proxy::custom_http_auth(val) for setting the raw Proxy-Authorization header when connecting to proxies.
  • Fix redirect to reject locations that are not http:// or https://.
  • Fix setting nodelay when TLS is enabled but URL is HTTP.
  • (wasm) Add ClientBuilder::user_agent(val).
  • (wasm) add multipart::Form::headers(headers).

New Contributors

Changelog

Sourced from reqwest's changelog.

v0.11.23

  • Add Proxy::custom_http_auth(val) for setting the raw Proxy-Authorization header when connecting to proxies.
  • Fix redirect to reject locations that are not http:// or https://.
  • Fix setting nodelay when TLS is enabled but URL is HTTP.
  • (wasm) Add ClientBuilder::user_agent(val).
  • (wasm) add multipart::Form::headers(headers).
Commits


Updates tokio from 1.35.0 to 1.35.1

Release notes

Sourced from tokio's releases.

Tokio v1.35.1

1.35.1 (December 19, 2023)

This is a forward part of a change that was backported to 1.25.3.

Fixed

  • io: add budgeting to tokio::runtime::io::registration::async_io (#6221)

#6221: tokio-rs/tokio#6221

Commits


Updates futures-core from 0.3.29 to 0.3.30

Release notes

Sourced from futures-core's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Changelog

Sourced from futures-core's changelog.

0.3.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Commits
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view


Updates futures-sink from 0.3.29 to 0.3.30

Release notes

Sourced from futures-sink's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Changelog

Sourced from futures-sink's changelog.

0.3.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Commits
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view


Updates futures-task from 0.3.29 to 0.3.30

Release notes

Sourced from futures-task's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Changelog

Sourced from futures-task's changelog.

0.3.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Commits
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view


Updates futures-util from 0.3.29 to 0.3.30

Release notes

Sourced from futures-util's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Changelog

Sourced from futures-util's changelog.

0.3.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Commits
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view


Updates hyper from 0.14.27 to 0.14.28

Release notes

Sourced from hyper's releases.

v0.14.28

Features

  • body: deprecate to_bytes() and aggregate() (#3466) (7f382ad6)
  • client: add conn::http1::Connection::without_shutdown() method (#3431) (ad504977)
  • server: add Builder::local_addr() (#3278) (d342c2c7)

Bug Fixes

  • client:
    • panic when pool idle timeout set to zero (#3365) (34d38008)
    • divide by zero error when DNS returns no addrs (#3355) (41eaf204)
    • Do not strip path and scheme components from URIs for HTTP/2 Extended CONNEC (45aa6249)
    • early respond from server shouldn't propagate reset error (#3274) (aac6760e, closes #2872)
  • http1:

New Contributors

Changelog

Sourced from hyper's changelog.

v0.14.28 (2023-12-18)

Bug Fixes

  • client:
    • panic when pool idle timeout set to zero (#3365) (34d38008)
    • divide by zero error when DNS returns no addrs (#3355) (41eaf204)
    • Do not strip path and scheme components from URIs for HTTP/2 Extended CONNEC (45aa6249)
    • early respond from server shouldn't propagate reset error (#3274) (aac6760e, closes #2872)
  • http1:

Features

  • body: deprecate to_bytes() and aggregate() (#3466) (7f382ad6)
  • client: add conn::http1::Connection::without_shutdown() method (#3431) (ad504977)
  • server: add Builder::local_addr() (#3278) (d342c2c7)
Commits
  • 98a7ab0 v0.14.28
  • 344a878 fix(http1): add internal limit for chunked extensions (#3495)
  • 5eca028 fix(http1): reject chunked headers missing a digit (#3494)
  • 7f382ad feat(body): deprecate to_bytes() and aggregate() (#3466)
  • ad50497 feat(client): add conn::http1::Connection::without_shutdown() method (#3431)
  • 4899703 chore(ci): cache rust dependency
  • e2c223a chore(ffi): revamp gen_header using cargo-expand
  • 45fef3b chore(ci): check C header file with stable rust
  • 5bddd5e chore(ci): use stable rust for building C API
  • 440f23a chore(ci): replace actions-rs with run and use taiki-e/install-action or taik...
  • Additional commits viewable in compare view


Updates object from 0.32.1 to 0.32.2

Changelog

Sourced from object's changelog.

0.32.2

Released 2023/12/24.

Added

  • Added ELF relocations for LoongArch ABI v2.20. #578 #589

  • Added ELF support for SHARC. #593

  • Added write::coff::Writer. #595

  • Added SubArchitecture::Arm64EC support for PE/COFF. #607

  • Added SubArchitecture::Arm64E support for Mach-O. #614

  • Added read::Object::symbol_by_name and read::Object::symbol_by_name_bytes. #602

  • Added more functions to the low level API in read::xcoff. #608

  • Added more functions to the low level API in read::macho. #584

Changed

  • Fixes for AArch64 relocation addends for Mach-O. #581

  • Changes to write::Object output for Mach-O, including the addition of a LC_DYSYMTAB load command. #584

  • Changed write::Object to always use R_X86_64_PLT32 for x86-64 branches for ELF. #590

  • Fixed read::ObjectSymbol::kind for undefined section symbols for COFF. #592

  • Fixed write::Object to accept undefined section symbols for COFF. #594

  • Improved parsing of auxiliary section symbols for COFF. #603

... (truncated)

Commits


Updates openssl from 0.10.61 to 0.10.62

Release notes

Sourced from openssl's releases.

openssl-v0.10.62

What's Changed

New Contributors

Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62

Commits
  • 4c98550 Merge pull request #2133 from alex/bump-for-release
  • c2c52d8 Release openssl v0.10.62 and openssl-sys v0.9.98
  • 5176570 Merge pull request #2129 from nicklaswj/add_curve_brainpoolP320r1
  • f6ed2c0 Add nid for curve brainpoolP320r1
  • 994939b Merge pull request #2126 from overvenus/rand-priv-bytes
  • 6d2fce2 Fix legacy OpenSSL build
  • ec8f096 Add rand_priv_bytes
  • 5b4edd8 Merge pull request #2124 from botovq/libressl-390
  • 4d83202 X509V3_EXT_add_alias() will be removed
  • 8a4db4b X509_PURPOSE_get0() will return a const pointer
  • Additional commits viewable in compare view


Updates pkg-config from 0.3.27 to 0.3.28

Changelog

Sourced from pkg-config's changelog.

[0.3.28] - 2023-12-20

Fixed

  • Pass -l:libfoo.a to linker directly (#149).

Changed

  • Improve error message when library not found (#158).
Commits
  • 333771e Update version and CHANGELOG.md to 0.3.28
  • 9e485f0 Merge pull request #158 from Finchiedev/master
  • 08a1c5f Fix compilation for 1ac32cd on Rust 1.30
  • 1ac32cd Print correct variable name for search path
  • a0640aa Wrap std::process::Command to track arguments and environment variables
  • ef638e8 Merge pull request #157 from piwicode/master
  • 210efe7 Fix spelling.
  • d5be171 Improve error message when library not found
  • 576f550 Merge pull request #149 from chenyuanrun/trim_l_prefix
  • ef726e0 Pass link flag like -l:libfoo.a to linker directly.
  • See full diff in compare view


Updates proc-macro2 from 1.0.70 to 1.0.71

Release notes

Sourced from proc-macro2's releases.

1.0.71

  • Turn on deny(unsafe_op_in_unsafe_fn) lint
Commits
  • 593681b Release 1.0.71
  • 6756d15 Merge pull request #427 from dtolnay/unsafeop
  • e95447c Fill in unsafe blocks inside unsafe functions
  • 54f7f80 Turn on deny(unsafe_op_in_unsafe_fn)
  • 49b26d2 Update ui test suite to nightly-2023-12-15
  • 0b963a2 Unbreak binutils-dev install in GitHub Actions
  • f7576d1 Format with new rustfmt that handles let-else
  • 349dc3f Update afl fuzzer from 0.14 to 0.15
  • See full diff in compare view


Updates serde_spanned from 0.6.4 to 0.6.5

Commits


Updates winnow from 0.5.28 to 0.5.30

Changelog

Sourced from winnow's changelog.

[0.5.30] - 2023-12-18

Features

  • Add Parser::default_value

[0.5.29] - 2023-12-18

Features

  • New combinator::seq! for easier initialization of structs/tuples
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 8 months ago

Codecov Report

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

Comparison is base (7285d71) 82.90% compared to head (a34100f) 82.90%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #32 +/- ## ======================================= Coverage 82.90% 82.90% ======================================= Files 7 7 Lines 3265 3265 ======================================= Hits 2707 2707 Misses 558 558 ```

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