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 15 updates #114

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 Jan 13, 2025

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

Package From To
ratatui 0.28.1 0.29.0
clap 4.5.20 4.5.26
thiserror 1.0.64 2.0.11
tui-input 0.10.1 0.11.1
tui-popup 0.5.0 0.6.0
ansi-to-tui 6.0.0 7.0.0
console 0.15.8 0.15.10
which 6.0.3 7.0.1
tui-big-text 0.6.0 0.7.0
chrono 0.4.38 0.4.39
sysinfo 0.32.0 0.33.1
webbrowser 1.0.2 1.0.3
lddtree 0.3.5 0.3.7
itertools 0.13.0 0.14.0
termbg 0.5.2 0.6.2

Updates ratatui from 0.28.1 to 0.29.0

Release notes

Sourced from ratatui's releases.

v0.29.0

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


... (truncated)

Changelog

Sourced from ratatui's changelog.

v0.29.0 - 2024-10-21

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 in the terminal. It is used in the examples/ratatui-logo.rs example, and may be used in your applications' help or about screens.

    use ratatui::{Frame, widgets::RatatuiLogo};
    fn draw(frame: &mut Frame) {
    frame.render_widget(RatatuiLogo::tiny(), frame.area());

... (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.20 to 4.5.26

Release notes

Sourced from clap's releases.

v4.5.26

[4.5.26] - 2025-01-09

Fixes

  • (error) Reduce binary size with the suggestions feature

v4.5.25

[4.5.25] - 2025-01-09

Fixes

  • (help) Reduce binary size

v4.5.24

[4.5.24] - 2025-01-07

Fixes

  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument

v4.5.23

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap's changelog.

[4.5.26] - 2025-01-09

Fixes

  • (error) Reduce binary size with the suggestions feature

[4.5.25] - 2025-01-09

Fixes

  • (help) Reduce binary size

[4.5.24] - 2025-01-07

Fixes

  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • df1efca chore: Release
  • d48bef6 docs: Update changelog
  • 6b7aa3d Merge pull request #5628 from mart-mihkel/complete_hyphen
  • 57b6cb8 refactor(complete): Simplify engine::complete
  • fbec05e refactor(complete): Fix typo in hyhpen
  • b7cfbdc feat(complete): Native support for hyphen values
  • 1d97c29 test(complete): Test cases for allow_hyphen_values
  • 64e3790 chore: Release
  • 1cf50c7 docs: Update changelog
  • 085143d Merge pull request #5722 from epage/sort
  • Additional commits viewable in compare view

Updates thiserror from 1.0.64 to 2.0.11

Release notes

Sourced from thiserror's releases.

2.0.11

2.0.10

  • Support errors containing a generic type parameter's associated type in a field (#408)

2.0.9

  • Work around missing_inline_in_public_items clippy restriction being triggered in macro-generated code (#404)

2.0.8

  • Improve support for macro-generated derive(Error) call sites (#399)

2.0.7

  • Work around conflict with #[deny(clippy::allow_attributes)] (#397, thanks @​zertosh)

2.0.6

  • Suppress deprecation warning on generated From impls (#396)

2.0.5

  • Prevent deprecation warning on generated impl for deprecated type (#394)

2.0.4

  • Eliminate needless_lifetimes clippy lint in generated From impls (#391, thanks @​matt-phylum)

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,
    }

... (truncated)

Commits
  • 0f532e3 Release 2.0.11
  • 3d15543 Merge pull request #410 from dtolnay/testnostd
  • 1a226ae Disable two more integration tests in no-std mode
  • 8b5f2d7 Fix unused import in test when built without std
  • eecd247 Add CI step to test with "std" disabled
  • 8f2a76b Merge pull request #409 from Maytha8/std-tests
  • 693a6cd Add feature gate to tests that use std
  • 349f696 Release 2.0.10
  • 6cd87bc Merge pull request #408 from dtolnay/assoctype
  • 6b3e1e5 Generate trait bounds on associated types
  • Additional commits viewable in compare view

Updates tui-input from 0.10.1 to 0.11.1

Release notes

Sourced from tui-input's releases.

v0.11.1

What's Changed

New Contributors

Full Changelog: sayanarijit/tui-input@v0.11.0...v0.11.1

v0.11.0

What's Changed

Full Changelog: sayanarijit/tui-input@v0.10.1...v0.11.0

Commits

Updates tui-popup from 0.5.0 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

tui-popup-v0.5.1

🐛 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
  • e65caad chore: update to use ratatui 0.29 (#43)
  • 7be6cd3 chore: release (#39)
  • e7942b7 build(deps): update rstest requirement from 0.22.0 to 0.23.0 (#41)
  • 8f25dde fix(tui-scrollview): make scroll_view buffer area the same as its content (#37)
  • 18e3c03 build: remove patch from main Cargo.toml file that was pointing at a local pa...
  • 6437247 docs: update readme
  • 9591f2f feat: add tui-box-text widget
  • 89ac0fe docs: demo horizontal scrolling and mark TODO as done
  • 2994cce docs: use ratatui 0.28.1 methods for examples
  • 7e38003 fix: broken links from move to tui-widgets
  • Additional commits viewable in compare view

Updates ansi-to-tui from 6.0.0 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.8 to 0.15.10

Release notes

Sourced from console's releases.

0.15.10

What's Changed

0.15.9

What's Changed

Changelog

Sourced from console's changelog.

Changelog

Commits

Updates which from 6.0.3 to 7.0.1

Release notes

Sourced from which's releases.

7.0.1

What's Changed

New Contributors

Full Changelog: harryfei/which-rs@7.0.0...7.0.1

7.0.0

  • Add support to WhichConfig for a user provided closure that will be called whenever a nonfatal error occurs. This technically breaks a few APIs due to the need to add more generics and lifetimes. Most code will compile without changes.
Changelog

Sourced from which's changelog.

7.0.1

  • Get user home directory from env_home instead of home. Thanks @​micolous for this contribution!
  • If home directory is unavailable, do not expand the tilde to an empty string. Leave it as is.

7.0.0

  • Add support to WhichConfig for a user provided closure that will be called whenever a nonfatal error occurs. This technically breaks a few APIs due to the need to add more generics and lifetimes. Most code will compile without changes.
Commits

Updates tui-big-text from 0.6.0 to 0.7.0

Release notes

Sourced from tui-big-text's releases.

tui-big-text-v0.7.0

🐛 Bug Fixes

  • Broken links from move to tui-widgets

tui-big-text-v0.6.1

🐛 Bug Fixes

  • Broken links from move to tui-widgets
Commits
  • e65caad chore: update to use ratatui 0.29 (#43)
  • 7be6cd3 chore: release (#39)
  • e7942b7 build(deps): update rstest requirement from 0.22.0 to 0.23.0 (#41)
  • 8f25dde fix(tui-scrollview): make scroll_view buffer area the same as its content (#37)
  • 18e3c03 build: remove patch from main Cargo.toml file that was pointing at a local pa...
  • 6437247 docs: update readme
  • 9591f2f feat: add tui-box-text widget
  • 89ac0fe docs: demo horizontal scrolling and mark TODO as done
  • 2994cce docs: use ratatui 0.28.1 methods for examples
  • 7e38003 fix: broken links from move to tui-widgets
  • Additional commits viewable in compare view

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates sysinfo from 0.32.0 to 0.33.1

Changelog

Sourced from sysinfo's changelog.

0.33.1

  • Linux: Fix components retrieval.
  • Linux: Filter out more virtual file systems for Disk API.
  • Linux/Android: Improve System::long_os_version().
  • Apple: Add missing CPU brands for iPhone and iPads.
  • macOS: Improve system name retrieval in System::long_os_version().
  • Linux/macOS: Avoid trailing whitespace and consecutive whitespace in System::long_os_version().
  • Windows: Fix User::groups.
  • Improve documentation for System::name, System::kernel_version, System::os_version, System::long_os_version and System::distribution_id.

0.33.0

  • Linux: Add more ARM vendor IDs.
  • Linux: Improve CPU computation when refreshing a single process CPU usage.
  • Windows: Fix CPU frequency not being refreshed.
  • Windows: Improved components retrieval.
  • Windows: Fix inconsistent boot_time information.
  • Windows: Fix User::groups.
  • macOS: Fix network data information being limited to 32 bits.
  • macOS: Add newer macOS version for System::long_os_version.
  • unix: Add support for network sub-interfaces.
  • Use std::env::consts::ARCH as fallback for System::cpu_arch.
  • Add disk I/O support provided through Disk::usage.
  • Add NetworkData::mtu.
  • Add DiskRefreshKind to have finer-grained disks refreshes.
  • Component::temperature and Component::max now returns Option<f32>.
  • Users::refresh_list, Groups::refresh_list, Components::refresh_list, Networks::refresh_list and Disks::refresh_list methods were renamed refresh.
  • *RefreshKind::new methods were renamed nothing.
  • Improve documentation for DiskUsage::read_bytes.
  • Improve documentation for Process::kill.

0.32.1

  • Fix compilation error due to libc update.
Commits
  • 1831f89 Merge pull request #1440 from GuillaumeGomez/update
  • 04a9c3a Fix clippy lint
  • 3eb4b94 Update crate version to 0.33.1
  • 3834f32 Update CHANGELOG for 0.33.1
  • 8a1def4 Fix wrong logic when checking that the DirEntry is a file
  • 705d862 filter out few virtual filesystems on linux
  • 22206e6 Improve documentation for Process:kill* and Process::wait methods
  • bbbdb23 Add iPhone 15 (#1429)
  • 4fa2db5 Add some missing CPU brands for iPhone and iPad
  • 1c90820 Prefix distro version with "unknown" if distro name is not known
  • Additional commits viewable in compare view

Updates webbrowser from 1.0.2 to 1.0.3

Release notes

Sourced from webbrowser's releases.

v1.0.3

Releasing v1.0.3 with the following changes:

Added

  • Unix: add support for solaris
Changelog

Sourced from webbrowser's changelog.

[1.0.3] - 2024-11-28

Added

  • Unix: add support for solaris
Commits
  • b5d6287 Release v1.0.3 [skip ci]
  • 26aaeee Merge branch 'kulikjak-add-solaris-support'. See PR #92
  • 592fe80 Add Solaris support
  • bbc28b7 Merge 'hamirmahal-style/simplify-statements-for-readability'. PR #91
  • f1bf12a style: simplify statements for readability
  • e6b7c63 android: fix test build #build-android
  • c0c97a3 android: fix test build #build-android
  • e10ff45 android: fix build #build-android
  • See full diff in compare view

Updates lddtree from 0.3.5 to 0.3.7

Commits

Updates itertools from 0.13.0 to 0.14.0

Changelog

Sourced from itertools's changelog.

0.14.0

Breaking

  • Increased MSRV to 1.63.0 (#960)
  • Removed generic parameter from cons_tuples (#988)

Added

  • Added array_combinations (#991)
  • Added k_smallest_relaxed and variants (#925)
  • Added next_array and collect_array (#560)
  • Implemented DoubleEndedIterator for FilterOk (#948)
  • Implemented DoubleEndedIterator for FilterMapOk (#950)

Changed

  • Allow Q: ?Sized in Itertools::contains (#971)
  • Improved hygiene of chain! (#943)
  • Improved into_group_map_by documentation (#1000)
  • Improved tree_reduce documentation (#955)
  • Improved discoverability of merge_join_by (#966)
  • Improved discoverability of take_while_inclusive (#972)
  • Improved documentation of find_or_last and find_or_first (#984)
  • Prevented exponentially large type sizes in tuple_combinations (#945)
  • Added track_caller attr for asser_equal (#976)

Notable Internal Changes

  • Fixed clippy lints (#956, #987, #1008)
  • Addressed warnings within doctests (#964)
  • CI: Run most tests with miri (#961)
  • CI: Speed up "cargo-semver-checks" action (#938)
  • Changed an instance of default_features in Cargo.toml to default-features (#985)
Commits
  • a015a68 Add next_array and collect_array
  • a1213e1 Prepare v0.14.0 release
  • ff0c942 fix clippy lints
  • f80883b Fix into_group_map_by documentation errors
  • b793238 Add track_caller for asser_equal
  • 5d4056b default_features is deprecated - switch it to default-features
  • a447b68 doc for added trait
  • d0479b0 "nitpicks"
  • 35c78ce IndexMut -> BorrowMut<slice>
  • deb53ba refactored to share code
  • Additional commits viewable in compare view

Updates termbg from 0.5.2 to 0.6.2

Changelog

Sourced from termbg's changelog.

v0.6.2 - 2025-01-06

v0.6.1 - 2024-11-15

v0.6.0 - 2024-10-21

  • [Fixed] Stdin is blocked #29
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 15 updates

Bumps the cargo-dependencies group with 15 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.20` | `4.5.26` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `2.0.11` |
| [tui-input](https://github.com/sayanarijit/tui-input) | `0.10.1` | `0.11.1` |
| [tui-popup](https://github.com/joshka/tui-widgets) | `0.5.0` | `0.6.0` |
| [ansi-to-tui](https://github.com/uttarayan21/ansi-to-tui) | `6.0.0` | `7.0.0` |
| [console](https://github.com/console-rs/console) | `0.15.8` | `0.15.10` |
| [which](https://github.com/harryfei/which-rs) | `6.0.3` | `7.0.1` |
| [tui-big-text](https://github.com/joshka/tui-widgets) | `0.6.0` | `0.7.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.32.0` | `0.33.1` |
| [webbrowser](https://github.com/amodm/webbrowser-rs) | `1.0.2` | `1.0.3` |
| [lddtree](https://github.com/messense/lddtree-rs) | `0.3.5` | `0.3.7` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.13.0` | `0.14.0` |
| [termbg](https://github.com/dalance/termbg) | `0.5.2` | `0.6.2` |



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.20 to 4.5.26
- [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.20...clap_complete-v4.5.26)

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

Updates `tui-input` from 0.10.1 to 0.11.1
- [Release notes](https://github.com/sayanarijit/tui-input/releases)
- [Commits](sayanarijit/tui-input@v0.10.1...v0.11.1)

Updates `tui-popup` from 0.5.0 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.0...tui-popup-v0.6.0)

Updates `ansi-to-tui` from 6.0.0 to 7.0.0
- [Changelog](https://github.com/ratatui/ansi-to-tui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/uttarayan21/ansi-to-tui/commits/v7.0.0)

Updates `console` from 0.15.8 to 0.15.10
- [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.8...0.15.10)

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

Updates `tui-big-text` from 0.6.0 to 0.7.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-big-text-v0.6.0...tui-big-text-v0.7.0)

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

Updates `sysinfo` from 0.32.0 to 0.33.1
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.32.0...v0.33.1)

Updates `webbrowser` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/amodm/webbrowser-rs/releases)
- [Changelog](https://github.com/amodm/webbrowser-rs/blob/main/CHANGELOG.md)
- [Commits](amodm/webbrowser-rs@v1.0.2...v1.0.3)

Updates `lddtree` from 0.3.5 to 0.3.7
- [Commits](messense/lddtree-rs@v0.3.5...v0.3.7)

Updates `itertools` from 0.13.0 to 0.14.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.13.0...v0.14.0)

Updates `termbg` from 0.5.2 to 0.6.2
- [Changelog](https://github.com/dalance/termbg/blob/master/CHANGELOG.md)
- [Commits](dalance/termbg@v0.5.2...v0.6.2)

---
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-major
  dependency-group: cargo-dependencies
- dependency-name: tui-input
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tui-popup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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-major
  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: sysinfo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: webbrowser
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: lddtree
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: termbg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
...

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