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

chore(deps): bump the cargo group with 13 updates #1322

Merged
merged 1 commit into from
Oct 26, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 26, 2023

Bumps the cargo group with 13 updates:

Package From To
clap 4.4.6 4.4.7
futures 0.3.28 0.3.29
libc 0.2.148 0.2.149
regex 1.9.6 1.10.2
reqwest 0.11.20 0.11.22
serde 1.0.188 1.0.190
strum_macros 0.25.2 0.25.3
tokio 1.32.0 1.33.0
tokio-util 0.7.9 0.7.10
toml 0.8.1 0.8.2
wl-clipboard-rs 0.7.0 0.8.0
clap_mangen 0.2.14 0.2.15
clap_complete 4.4.3 4.4.4

Updates clap from 4.4.6 to 4.4.7

Changelog

Sourced from clap's changelog.

[4.4.7] - 2023-10-24

Performance

  • Reduced code size
Commits

Updates futures from 0.3.28 to 0.3.29

Release notes

Sourced from futures's releases.

0.3.29

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)
Changelog

Sourced from futures's changelog.

0.3.29 - 2023-10-26

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)
Commits
  • 86f2a6a Release 0.3.29
  • a40204d Provide AtomicWaker if portable-atomic feature is enabled, even if atomic CAS...
  • 24cca65 Add TryAny adapter
  • e60a439 Add TryAll adapter
  • 5051335 Remove unsafe code from AssertUnmoved
  • 60a86e1 Fix Sync impl of FuturesUnordered
  • f392082 Extend io::AsyncBufReadExt::lines example with invalid UTF-8
  • 2f2ec39 Fix infinite loop caused by invalid UTF-8 bytes
  • 8570ea6 Fix unused_imports warning
  • 43c0c5f Add tests for StreamExt::all and StreamExt::any
  • Additional commits viewable in compare view

Updates libc from 0.2.148 to 0.2.149

Release notes

Sourced from libc's releases.

0.2.149

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.148...0.2.149

Commits
  • d80e8bd Auto merge of #3360 - vita-rust:release-0.2.149, r=JohnTitor
  • 017bf5f Auto merge of #3373 - SteveLauC:close_range, r=JohnTitor
  • 14ef2e5 Auto merge of #3335 - androm3da:bcain/sa_onstack, r=JohnTitor
  • 7b9e367 fmt
  • 173757d feat: add close_range for glibc
  • c7a860d Auto merge of #3370 - NordSecurity:add_apple_tvos_support, r=JohnTitor
  • 4cdc32e Auto merge of #3325 - Vtewari2311:libc-hurd-latest, r=JohnTitor
  • aa065c6 Auto merge of #3372 - SteveLauC:execveat, r=JohnTitor
  • d3910f6 add execveat for glibc
  • aab9d70 Fix apple tvos support
  • Additional commits viewable in compare view

Updates regex from 1.9.6 to 1.10.2

Changelog

Sourced from regex's changelog.

1.10.2 (2023-10-16)

This is a new patch release that fixes a search regression where incorrect matches could be reported.

Bug fixes:

1.10.1 (2023-10-14)

This is a new patch release with a minor increase in the number of valid patterns and a broadening of some literal optimizations.

New features:

  • FEATURE 04f5d7be: Loosen ASCII-compatible rules such that regexes like (?-u:☃) are now allowed.

Performance improvements:

  • PERF 8a8d599f: Broader the reverse suffix optimization to apply in more cases.

1.10.0 (2023-10-09)

This is a new minor release of regex that adds support for start and end word boundary assertions. That is, \< and \>. The minimum supported Rust version has also been raised to 1.65, which was released about one year ago.

The new word boundary assertions are:

  • \< or \b{start}: a Unicode start-of-word boundary (\W|\A on the left, \w on the right).
  • \> or \b{end}: a Unicode end-of-word boundary (\w on the left, \W|\z on the right)).
  • \b{start-half}: half of a Unicode start-of-word boundary (\W|\A on the left).
  • \b{end-half}: half of a Unicode end-of-word boundary (\W|\z on the right).

The \< and \> are GNU extensions to POSIX regexes. They have been added to the regex crate because they enjoy somewhat broad support in other regex engines as well (for example, vim). The \b{start} and \b{end} assertions are aliases for \< and \>, respectively.

The \b{start-half} and \b{end-half} assertions are not found in any

... (truncated)

Commits
  • 5f1f1c8 1.10.2
  • 1a54a82 deps: bump regex-automata to 0.4.3
  • 61242b1 regex-automata-0.4.3
  • 50fe7d1 changelog: 1.10.2
  • eb950f6 automata/meta: revert broadening of reverse suffix optimization
  • e7bd19d regex-lite-0.1.5
  • 0086dec lite: fix stack overflow test
  • 4ae1472 tests: fix compilation of doctests on 32-bit architectures
  • cd79881 regex-lite-0.1.4
  • 466e42c lite: fix stack overflow in NFA compiler
  • Additional commits viewable in compare view

Updates reqwest from 0.11.20 to 0.11.22

Release notes

Sourced from reqwest's releases.

v0.11.21

What's Changed

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.

New Contributors

Changelog

Sourced from reqwest's changelog.

v0.11.22

  • Fix compilation on Windows when trust-dns is enabled.

v0.11.21

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.
Commits

Updates serde from 1.0.188 to 1.0.190

Release notes

Sourced from serde's releases.

v1.0.190

  • Preserve NaN sign when deserializing f32 from f64 or vice versa (#2637)

v1.0.189

  • Fix "cannot infer type" error when internally tagged enum contains untagged variant (#2613, thanks @​ahl)
Commits
  • edb1a58 Release 1.0.190
  • 11c2917 Merge pull request #2637 from dtolnay/nansign
  • 6ba9c12 Float copysign does not exist in libcore yet
  • d2fcc34 Ensure f32 deserialized from f64 and vice versa preserve NaN sign
  • a091a07 Add float NaN tests
  • bb4135c Fix unused imports
  • 8de84b7 Resolve get_first clippy lint
  • 9cdf332 Remove 'remember to update' reminder from Cargo.toml
  • e94fc65 Release 1.0.189
  • b908487 Remove double nesting of first_attempt
  • Additional commits viewable in compare view

Updates strum_macros from 0.25.2 to 0.25.3

Changelog

Sourced from strum_macros's changelog.

0.25.3 (strum_macros)

Received a number of bug fix PR's.

  • #300: Fixes EnumIter for enums named Option.
  • #301: Improved doc comments
  • #304: Removed some unused Vec's
  • #305: Added generic support to EnumIs
Commits

Updates tokio from 1.32.0 to 1.33.0

Release notes

Sourced from tokio's releases.

Tokio v1.33.0

1.33.0 (October 9, 2023)

Fixed

  • io: mark Interest::add with #[must_use] (#6037)
  • runtime: fix cache line size for RISC-V (#5994)
  • sync: prevent lock poisoning in watch::Receiver::wait_for (#6021)
  • task: fix spawn_local source location (#5984)

Changed

  • sync: use Acquire/Release orderings instead of SeqCst in watch (#6018)

Added

  • fs: add vectored writes to tokio::fs::File (#5958)
  • io: add Interest::remove method (#5906)
  • io: add vectored writes to DuplexStream (#5985)
  • net: add Apple tvOS support (#6045)
  • sync: add ?Sized bound to {MutexGuard,OwnedMutexGuard}::map (#5997)
  • sync: add watch::Receiver::mark_unseen (#5962, #6014, #6017)
  • sync: add watch::Sender::new (#5998)
  • sync: add const fn OnceCell::from_value (#5903)

Removed

  • remove unused stats feature (#5952)

Documented

  • add missing backticks in code examples (#5938, #6056)
  • fix typos (#5988, #6030)
  • process: document that Child::wait is cancel safe (#5977)
  • sync: add examples for Semaphore (#5939, #5956, #5978, #6031, #6032, #6050)
  • sync: document that broadcast capacity is a lower bound (#6042)
  • sync: document that const_new is not instrumented (#6002)
  • sync: improve cancel-safety documentation for mpsc::Sender::send (#5947)
  • sync: improve docs for watch channel (#5954)
  • taskdump: render taskdump documentation on docs.rs (#5972)

Unstable

  • taskdump: fix potential deadlock (#6036)

#5903: tokio-rs/tokio#5903 #5906: tokio-rs/tokio#5906 #5938: tokio-rs/tokio#5938 #5939: tokio-rs/tokio#5939 #5947: tokio-rs/tokio#5947

... (truncated)

Commits

Updates tokio-util from 0.7.9 to 0.7.10

Commits

Updates toml from 0.8.1 to 0.8.2

Commits
  • fe65b2b chore: Release
  • ed597eb chore: Release
  • 257a0fd docs: Update changelog
  • 4b44f53 Merge pull request #617 from epage/update
  • 7eaf286 fix(parser): Failed on mixed inline tables
  • e1f2037 test: Verify with latest data
  • 2f9253c chore: Update toml-test
  • c9b481c test(toml): Ensure tables are used for validation
  • 43d7f29 Merge pull request #615 from toml-rs/renovate/actions-checkout-4.x
  • ef9b837 chore(deps): update actions/checkout action to v4
  • See full diff in compare view

Updates wl-clipboard-rs from 0.7.0 to 0.8.0

Changelog

Sourced from wl-clipboard-rs's changelog.

v0.8.0 (3rd Oct 2023)

  • Added copy::Options::omit_additional_text_mime_types to disable wl- clipboard-rs offering several known text MIME types when a text MIME type is copied.
  • Updated wayland-rs to 0.31.
    • Breaking This changed the error types slightly. However, most uses of wl-clipboard-rs should be completely unaffected.
  • Updated other dependencies.
Commits

Updates clap_mangen from 0.2.14 to 0.2.15

Commits

Updates clap_complete from 4.4.3 to 4.4.4

Release notes

Sourced from clap_complete's releases.

v4.4.4

[4.4.4] - 2023-09-18

Internal

  • Update terminal_size to 0.3
Changelog

Sourced from clap_complete's changelog.

[4.4.4] - 2023-09-18

Internal

  • Update terminal_size to 0.3
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

@hrkfdn
Copy link
Owner

hrkfdn commented Oct 26, 2023

@dependabot rebase

Bumps the cargo group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.7` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` |
| [libc](https://github.com/rust-lang/libc) | `0.2.148` | `0.2.149` |
| [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` |
| [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.190` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.25.2` | `0.25.3` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.33.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.9` | `0.7.10` |
| [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.2` |
| [wl-clipboard-rs](https://github.com/YaLTeR/wl-clipboard-rs) | `0.7.0` | `0.8.0` |
| [clap_mangen](https://github.com/clap-rs/clap) | `0.2.14` | `0.2.15` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.4.3` | `4.4.4` |


Updates `clap` from 4.4.6 to 4.4.7
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.6...v4.4.7)

Updates `futures` from 0.3.28 to 0.3.29
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.28...0.3.29)

Updates `libc` from 0.2.148 to 0.2.149
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.148...0.2.149)

Updates `regex` from 1.9.6 to 1.10.2
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.9.6...1.10.2)

Updates `reqwest` from 0.11.20 to 0.11.22
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.20...v0.11.22)

Updates `serde` from 1.0.188 to 1.0.190
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.188...v1.0.190)

Updates `strum_macros` from 0.25.2 to 0.25.3
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Peternator7/strum/commits)

Updates `tokio` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.32.0...tokio-1.33.0)

Updates `tokio-util` from 0.7.9 to 0.7.10
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/commits)

Updates `toml` from 0.8.1 to 0.8.2
- [Commits](toml-rs/toml@toml-v0.8.1...toml-v0.8.2)

Updates `wl-clipboard-rs` from 0.7.0 to 0.8.0
- [Changelog](https://github.com/YaLTeR/wl-clipboard-rs/blob/master/CHANGELOG.md)
- [Commits](YaLTeR/wl-clipboard-rs@v0.7.0...v0.8.0)

Updates `clap_mangen` from 0.2.14 to 0.2.15
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_mangen-v0.2.14...clap_mangen-v0.2.15)

Updates `clap_complete` from 4.4.3 to 4.4.4
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.4.3...clap_complete-v4.4.4)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: strum_macros
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: wl-clipboard-rs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: clap_mangen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-a92102fdde branch from 9706687 to b3d20a1 Compare October 26, 2023 16:16
@hrkfdn hrkfdn merged commit e0d1d26 into main Oct 26, 2023
6 checks passed
@hrkfdn hrkfdn deleted the dependabot/cargo/cargo-a92102fdde branch October 26, 2023 16:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant