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-dependencies group across 1 directory with 11 updates #126

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

Bumps the cargo-dependencies group with 11 updates in the / directory:

Package From To
ratatui 0.28.1 0.29.0
clap 4.5.27 4.5.31
thiserror 2.0.11 2.0.12
tui-popup 0.5.1 0.6.0
textwrap 0.16.1 0.16.2
ansi-to-tui 6.0.1 7.0.0
console 0.15.10 0.15.11
which 7.0.1 7.0.2
tui-big-text 0.6.1 0.7.1
chrono 0.4.39 0.4.40
bytesize 1.3.0 2.0.1

Updates ratatui from 0.28.1 to 0.29.0

Changelog

Sourced from ratatui's changelog.

v0.29.0 - 2024-10-21

"Food will come, Remy. Food always comes to those who love to cook." – Gusteau

We are excited to announce the new version of ratatui - a Rust library that's all about cooking up TUIs 👨‍🍳🐀

Release highlights: https://ratatui.rs/highlights/v029/

⚠️ List of breaking changes can be found here.

Features

  • 3a43274 (color) Add hsluv support by @​du-ob in #1333

  • 4c4851c (example) Add drawing feature to the canvas example by @​orhun in #1429

    rec_20241018T235208

    fun fact: I had to do 35 pushups for this...


  • e5a7609 (line) Impl From for Line by @​joshka in #1373 [breaking]

    BREAKING-CHANGES:Line now implements From<Cow<str>

    As this adds an extra conversion, ambiguous inferred values may no longer compile.

    // given:
    struct Foo { ... }
    impl From<Foo> for String { ... }
    impl From<Foo> for Cow<str> { ... }
    let foo = Foo { ... };
    let line = Line::from(foo); // now fails due to ambiguous type inference
    // replace with
    let line = Line::from(String::from(foo));

    Fixes:ratatui/ratatui#1367


  • 2805ddd (logo) Add a Ratatui logo widget by @​joshka in #1307

    This is a simple logo widget that can be used to render the Ratatui logo

... (truncated)

Commits
  • 2873217 chore(release): prepare for 0.29.0 (#1444)
  • 6515097 chore(cargo): check in Cargo.lock (#1434)
  • 4c4851c feat(example): add drawing feature to the canvas example (#1429)
  • 4f5503d fix(color)!: hsl and hsluv are now clamped before conversion (#1436)
  • 611086e fix: sparkline docs / doc tests (#1437)
  • 514d273 fix(terminal): use the latest, resized area when clearing (#1427)
  • 60cc15b feat!: add support for empty bar style to Sparkline (#1326)
  • a52ee82 fix(text): truncate based on alignment (#1432)
  • 381ec75 docs(readme): reduce the length (#1431)
  • f6f7794 chore: remove leftover prelude refs / glob imports from example code (#1430)
  • Additional commits viewable in compare view

Updates clap from 4.5.27 to 4.5.31

Release notes

Sourced from clap's releases.

v4.5.31

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>

v4.5.30

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

v4.5.29

[4.5.29] - 2025-02-11

Fixes

  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

v4.5.28

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Changelog

Sourced from clap's changelog.

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

[4.5.29] - 2025-02-11

Fixes

  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Commits
  • acf9abb chore: Release
  • 9186a18 docs: Update changelog
  • 233c316 Merge pull request #5926 from sorairolake/feature/value-parser-factory-for-sa...
  • 13931a2 Merge pull request #5923 from Reverier-Xu/master
  • 536e29f feat(builder): Add ValueParserFactory for Saturating\<T>
  • 45ed71c chore: Avoid using gen for rust 2024 preserved keyword
  • 5029bb3 chore: Avoid using gen for rust 2024 preserved keyword
  • 8a1d59b chore(deps): Update Rust Stable to v1.85 (#5921)
  • 9caee53 docs(changelog): Clarify 5.0.0
  • cb2352f Merge pull request #5918 from epage/test
  • Additional commits viewable in compare view

Updates thiserror from 2.0.11 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)
Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates tui-popup from 0.5.1 to 0.6.0

Release notes

Sourced from tui-popup's releases.

tui-popup-v0.6.0

🐛 Bug Fixes

  • Broken links from move to tui-widgets
Changelog

Sourced from tui-popup's changelog.

Changelog

All notable changes to this project will be documented in this file.

[0.4.1] - 2024-11-23

⚙️ Miscellaneous Tasks

  • Updated the following local packages: tui-scrollview

[0.3.1] - 2024-10-20

🚀 Features

  • (cards) Add new tui-cards library for playing cards

🐛 Bug Fixes

  • Broken links from move to tui-widgets

Other

  • Remove patch from main Cargo.toml file that was pointing at a local path (#38)

  • (deps) Update rstest requirement from 0.22.0 to 0.23.0 (#41)

    Updates the requirements on rstest to permit the latest version.

... (truncated)

Commits

Updates textwrap from 0.16.1 to 0.16.2

Release notes

Sourced from textwrap's releases.

textwrap-0.16.2

Version 0.16.2 (2025-03-03)

This release fixes an unnecessary f64 cast, updates all dependencies, bumps the minimum supported Rust version to 1.70.

  • #540: Avoid spurious f64 cast and comparison.
  • #565: Configure automatic Dependabot updates.
  • #579: Bump rust-version to 1.70.
Changelog

Sourced from textwrap's changelog.

Version 0.16.2 (2025-03-03)

This release fixes an unnecessary f64 cast, updates all dependencies, bumps the minimum supported Rust version to 1.70.

  • #540: Avoid spurious f64 cast and comparison.
  • #565: Configure automatic Dependabot updates.
  • #579: Bump rust-version to 1.70.
Commits
  • 4770e55 Merge pull request #585 from mgeisler/release-0.16.2
  • 84ca0bb Bump version to 0.16.2
  • 30fc2df Update changelog for version 0.16.2
  • 6ff5874 Add dependency graph for version 0.16.2
  • 1e2016c Adapt to breaking changes in actions/github-script
  • ed3e027 Merge pull request #584 from mgeisler/cargo-semver-on-release
  • 5bd05cb Run cargo semver-checks when preparing a release
  • ca4138c Merge pull request #581 from mgeisler/cache-coverage-build
  • 47c5cda Merge pull request #583 from mgeisler/add-codecov-token
  • 3ca3f2e Merge pull request #582 from waywardmonkeys/fix-needless_lifetimes-lint
  • Additional commits viewable in compare view

Updates ansi-to-tui from 6.0.1 to 7.0.0

Changelog

Sourced from ansi-to-tui's changelog.

7.0.0 - 2024-10-24

Other

  • (bump) Update lockfile and bump ratatui version to 0.29

3.0.0 (2023-03-21)

Commit Statistics

  • 6 commits contributed to the release.
  • 5 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
    • [update] Changelog and readme (8b38176)
    • Update version (7617608)
    • Move to ratatui (0446f08)
    • [feat] Bump version and update CHANGELOG.md (eec6f86)
    • [fix] properly reset styles (50f5be0)
    • [fix] Properly set background colors (f827e25)

2.0.1 (2023-03-16)

Commit Statistics

  • 11 commits contributed to the release over the course of 214 calendar days.
  • 238 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized

... (truncated)

Commits

Updates console from 0.15.10 to 0.15.11

Release notes

Sourced from console's releases.

0.15.11

What's Changed

Commits
  • c7002e3 Refer to GitHub Releases
  • 73033ec Bump version to 0.15.11
  • 4fa21ad Simplify windows read_single_key()
  • 456eb78 Remove unused cruft
  • 8623cd6 Simplify ConsoleModeGuard::set()
  • ca2e0f8 Use match for creation of new console mode
  • 2f7184f Add docstring for Windows set_console_mode()
  • 3c7ba95 Explicitly handle CtrlC on Windows (#235)
  • de16ee6 Run clippy on all major platforms
  • cb6126e Extend application of clippy
  • Additional commits viewable in compare view

Updates which from 7.0.1 to 7.0.2

Release notes

Sourced from which's releases.

7.0.2

  • Don't return paths containing the single dot . reference to the current directory, even if the original request was given in terms of the current directory. Thanks @​jakobhellermann for this contribution!
Changelog

Sourced from which's changelog.

7.0.2

  • Don't return paths containing the single dot . reference to the current directory, even if the original request was given in terms of the current directory. Thanks @​jakobhellermann for this contribution!
Commits
  • bd86881 bump version, add to changelog
  • cf37760 don't run relative dot test on macos
  • f2c4bd6 update target to new name for wasm32-wasip1
  • 87acc08 When searching for ./script.sh, don't return /path/to/./script.sh
  • See full diff in compare view

Updates tui-big-text from 0.6.1 to 0.7.1

Release notes

Sourced from tui-big-text's releases.

tui-big-text-v0.7.0

🐛 Bug Fixes

  • Broken links from move to tui-widgets
Commits

Updates chrono from 0.4.39 to 0.4.40

Release notes

Sourced from chrono's releases.

0.4.40

What's Changed

Commits
  • 2b7a28e Bump version to 0.4.40
  • 6d29c8a Add quarter (%q) date string specifier
  • 07216ae Upgrade to windows-bindgen 0.60
  • bf1973c Use similar-asserts to show bindgen diff
  • d0f8b59 Restrict MSRV to check --lib
  • 1f345fd Switch to 2024 idiom
  • 7f6cf5e Switch to 2024 style
  • 11d227a Apply suggestions from clippy 1.85
  • 15e287b Use NaiveDateTime for internal tz_info methods. (#1658)
  • 8317e7c docs: fix minor typo
  • Additional commits viewable in compare view

Updates bytesize from 1.3.0 to 2.0.1

Release notes

Sourced from bytesize's releases.

bytesize: v2.0.1

  • Add support for precision in Display implementations.
Changelog

Sourced from bytesize's changelog.

2.0.1

  • Add support for precision in Display implementations.

v2.0.0

  • Add support for no_std targets.
  • Use IEC (binary) format by default with Display.
  • Use "kB" for SI unit.
  • Add Display type for customizing printed format.
  • Add ByteSize::display() method.
  • Implement Sub<ByteSize> for ByteSize.
  • Implement Sub<impl Into<u64>> for ByteSize.
  • Implement SubAssign<ByteSize> for ByteSize.
  • Implement SubAssign<impl Into<u64>> for ByteSize.
  • Reject parsing non-unit characters after whitespace.
  • Remove ByteSize::to_string_as() method.
  • Remove top-level to_string() method.
  • Remove top-level B constant.
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

…h 11 updates

Bumps the cargo-dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ratatui](https://github.com/ratatui/ratatui) | `0.28.1` | `0.29.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.27` | `4.5.31` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.11` | `2.0.12` |
| [tui-popup](https://github.com/joshka/tui-widgets) | `0.5.1` | `0.6.0` |
| [textwrap](https://github.com/mgeisler/textwrap) | `0.16.1` | `0.16.2` |
| [ansi-to-tui](https://github.com/uttarayan21/ansi-to-tui) | `6.0.1` | `7.0.0` |
| [console](https://github.com/console-rs/console) | `0.15.10` | `0.15.11` |
| [which](https://github.com/harryfei/which-rs) | `7.0.1` | `7.0.2` |
| [tui-big-text](https://github.com/joshka/tui-widgets) | `0.6.1` | `0.7.1` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.40` |
| [bytesize](https://github.com/bytesize-rs/bytesize) | `1.3.0` | `2.0.1` |



Updates `ratatui` from 0.28.1 to 0.29.0
- [Release notes](https://github.com/ratatui/ratatui/releases)
- [Changelog](https://github.com/ratatui/ratatui/blob/main/CHANGELOG.md)
- [Commits](ratatui/ratatui@v0.28.1...v0.29.0)

Updates `clap` from 4.5.27 to 4.5.31
- [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.5.27...v4.5.31)

Updates `thiserror` from 2.0.11 to 2.0.12
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.11...2.0.12)

Updates `tui-popup` from 0.5.1 to 0.6.0
- [Release notes](https://github.com/joshka/tui-widgets/releases)
- [Changelog](https://github.com/joshka/tui-widgets/blob/main/CHANGELOG.md)
- [Commits](joshka/tui-widgets@tui-popup-v0.5.1...tui-popup-v0.6.0)

Updates `textwrap` from 0.16.1 to 0.16.2
- [Release notes](https://github.com/mgeisler/textwrap/releases)
- [Changelog](https://github.com/mgeisler/textwrap/blob/master/CHANGELOG.md)
- [Commits](mgeisler/textwrap@0.16.1...0.16.2)

Updates `ansi-to-tui` from 6.0.1 to 7.0.0
- [Changelog](https://github.com/ratatui/ansi-to-tui/blob/main/CHANGELOG.md)
- [Commits](ratatui/ansi-to-tui@v6.0.1...v7.0.0)

Updates `console` from 0.15.10 to 0.15.11
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.15.10...0.15.11)

Updates `which` from 7.0.1 to 7.0.2
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](harryfei/which-rs@7.0.1...7.0.2)

Updates `tui-big-text` from 0.6.1 to 0.7.1
- [Release notes](https://github.com/joshka/tui-widgets/releases)
- [Changelog](https://github.com/joshka/tui-widgets/blob/main/CHANGELOG.md)
- [Commits](https://github.com/joshka/tui-widgets/commits)

Updates `chrono` from 0.4.39 to 0.4.40
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.39...v0.4.40)

Updates `bytesize` from 1.3.0 to 2.0.1
- [Release notes](https://github.com/bytesize-rs/bytesize/releases)
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md)
- [Commits](bytesize-rs/bytesize@v1.3.0...bytesize-v2.0.1)

---
updated-dependencies:
- dependency-name: ratatui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: tui-popup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: textwrap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: ansi-to-tui
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: console
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: which
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: tui-big-text
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: bytesize
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from orhun as a code owner March 10, 2025 05:23
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 10, 2025
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.

0 participants