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

build(deps): bump the cargo group with 3 updates #44

Merged
merged 1 commit into from Sep 26, 2023

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the cargo group with 3 updates: clap, ratatui and rayon.

Updates clap from 4.4.4 to 4.4.5

Release notes

Sourced from clap's releases.

v4.4.5

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Changelog

Sourced from clap's changelog.

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Commits
  • c298f6a chore: Release
  • 463d6c5 docs: Update changelog
  • 3ac4404 Merge pull request #5025 from SUPERCILEX/resolve-alias-conflicts
  • a76789e fix: Make long subcommand flag inference consistent
  • c2b8ec3 fix: Resolve conflicting name inference if from aliases
  • e5c6993 test: Long flags inference
  • 0d9b14f Merge pull request #5136 from epage/panic
  • 221177b fix(assert): Call out the action in positional assert
  • cb2d2bc chore: Update from '_rust/main'
  • 4173c8f chore(ci): Don't set patch for MSRV
  • Additional commits viewable in compare view

Updates ratatui from 0.23.1-alpha.2 to 0.23.1-alpha.3

Release notes

Sourced from ratatui's releases.

v0.23.1-alpha.3

v0.23.1-alpha.3 - 2023-09-23

Features

  • d077903 (backend) Backend provides window_size, add Size struct (#276)

    For image (sixel, iTerm2, Kitty...) support that handles graphics in
    terms of `Rect` so that the image area can be included in layouts.
    

    For example: an image is loaded with a known pixel-size, and drawn, but the image protocol has no mechanism of knowing the actual cell/character area that been drawn on. It is then impossible to skip overdrawing the area.

    Returning the window size in pixel-width / pixel-height, together with colums / rows, it can be possible to account the pixel size of each cell / character, and then known the Rect of a given image, and also resize the image so that it fits exactly in a Rect.

    Crossterm and termwiz also both return both sizes from one syscall, while termion does two.

    Add a Size struct for the cases where a Rect's x/y is unused (always zero).

    Size is not "clipped" for area < u16::max_value() like Rect. This is why there are From implementations between the two.

  • be55a5f (examples) Add demo2 example (#500)

  • d67fa2c (line) Add Line::raw constructor (#511)

    * feat(line): add `Line::raw` constructor
    

    There is already Span::raw and Text::raw methods and this commit simply adds Line::raw method for symmetry.

    Multi-line content is converted to multiple spans with the new line removed

Bug Fixes

... (truncated)

Commits
  • d67fa2c feat(line): add Line::raw constructor (#511)
  • c3155a2 fix(barchart): add horizontal labels(#518)
  • c5ea656 fix(barchart): avoid divide by zero in rendering (#525)
  • be55a5f feat(examples): add demo2 example (#500)
  • 21303f2 fix(rect): prevent overflow in inner() and area() (#523)
  • c9b8e7c fix(barchart): render value labels with unicode correctly (#515)
  • 5498a88 chore(spans): remove deprecated Spans type (#426)
  • 0fe7385 docs(Gauge): add docs for Gauge and LineGauge (#514)
  • dd9a8df docs(table): add documentation for block and header methods of the `Table...
  • See full diff in compare view

Updates rayon from 1.7.0 to 1.8.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.8.0 / rayon-core 1.12.0 (2023-09-20)

  • The minimum supported rustc is now 1.63.
  • Added ThreadPoolBuilder::use_current_thread to use the builder thread as part of the new thread pool. That thread does not run the pool's main loop, but it may participate in work-stealing if it yields to rayon in some way.
  • Implemented FromParallelIterator<T> for Box<[T]>, Rc<[T]>, and Arc<[T]>, as well as FromParallelIterator<Box<str>> and ParallelExtend<Box<str>> for String.
  • ThreadPoolBuilder::build_scoped now uses std::thread::scope.
  • The default number of threads is now determined using std::thread::available_parallelism instead of the num_cpus crate.
  • The internal logging facility has been removed, reducing bloat for all users.
  • Many smaller performance tweaks and documentation updates.
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

Bumps the cargo group with 3 updates: [clap](https://github.com/clap-rs/clap), [ratatui](https://github.com/ratatui-org/ratatui) and [rayon](https://github.com/rayon-rs/rayon).


Updates `clap` from 4.4.4 to 4.4.5
- [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.4...v4.4.5)

Updates `ratatui` from 0.23.1-alpha.2 to 0.23.1-alpha.3
- [Release notes](https://github.com/ratatui-org/ratatui/releases)
- [Changelog](https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md)
- [Commits](ratatui-org/ratatui@v0.23.1-alpha.2...v0.23.1-alpha.3)

Updates `rayon` from 1.7.0 to 1.8.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.7.0...rayon-core-v1.8.0)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: ratatui
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 26, 2023
@ikeycode ikeycode merged commit de0154c into main Sep 26, 2023
1 check passed
@ikeycode ikeycode deleted the dependabot/cargo/cargo-598f2b8795 branch September 26, 2023 10:32
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant