orhun / binsider

Analyze ELF binaries like a boss 😼🕵️‍♂️
https://binsider.dev/
Apache License 2.0
2.76k stars 61 forks source link

chore(deps): bump the cargo-dependencies group across 1 directory with 9 updates #100

Closed dependabot[bot] closed 4 days ago

dependabot[bot] commented 1 week ago

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

Package From To
ratatui 0.28.1 0.29.0
thiserror 1.0.64 2.0.3
tui-input 0.10.1 0.11.0
tui-popup 0.5.0 0.6.0
ansi-to-tui 6.0.0 7.0.0
which 6.0.3 7.0.0
tui-big-text 0.6.0 0.7.0
lddtree 0.3.5 0.3.6
termbg 0.5.2 0.6.0

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 thiserror from 1.0.64 to 2.0.3

Release notes

Sourced from thiserror's releases.

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,
    }
    
  • Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)

    // Before: impl<T: Octal> Display for Error<T>
    // After: impl<T> Display for Error<T>
    #[derive(Error, Debug)]
    #[error("{thing:o}", thing = "...")]
    pub struct Error<T> {
        thing: T,
    }
    
  • Tuple structs and tuple variants can no longer use numerical {0} {1} access at the same time as supplying extra positional arguments for a format message, as this makes it ambiguous whether the number refers to a tuple field vs a different positional arg (#354)

    #[derive(Error, Debug)]
    #[error("ambiguous: {0} {}", $N)]
    //                  ^^^ Not allowed, use #[error("... {0} {n}", n = $N)]
    pub struct TupleError(i32);
    
  • Code containing invocations of thiserror's derive(Error) must now have a direct dependency on the thiserror crate regardless of the error data structure's contents (#368, #369, #370, #372)

Features

... (truncated)

Commits
  • 15fd26e Release 2.0.3
  • 7046023 Simplify how has_bonus_display is accumulated
  • 9cc1d0b Merge pull request #384 from dtolnay/nowrap
  • 1d040f3 Use Var wrapper only for Pointer formatting
  • 6a6132d Extend no-display ui test to cover another fmt trait
  • a061beb Merge pull request #383 from dtolnay/both
  • 6388293 Support Display and Debug of same path in error message
  • dc0359e Defer binding_value construction
  • 520343e Add test of Debug and Display of paths
  • 49be39d Release 2.0.2
  • Additional commits viewable in compare view


Updates tui-input from 0.10.1 to 0.11.0

Release notes

Sourced from tui-input's releases.

v0.11.0

What's Changed

Full Changelog: https://github.com/sayanarijit/tui-input/compare/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.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 which from 6.0.3 to 7.0.0

Release notes

Sourced from which's releases.

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.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 lddtree from 0.3.5 to 0.3.6

Commits


Updates termbg from 0.5.2 to 0.6.0

Changelog

Sourced from termbg's changelog.

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 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
dependabot[bot] commented 4 days ago

Looks like these dependencies are updatable in another way, so this is no longer needed.