Skip to content

Commit

Permalink
Bump ratatui from 0.25.0 to 0.26.0 (#4)
Browse files Browse the repository at this point in the history
* Bump ratatui from 0.25.0 to 0.26.0

Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.25.0 to 0.26.0.
- [Release notes](https://github.com/ratatui-org/ratatui/releases)
- [Changelog](https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md)
- [Commits](ratatui/ratatui@v0.25.0...v0.26.0)

---
updated-dependencies:
- dependency-name: ratatui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Apply clippy suggestions

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
  • Loading branch information
dependabot[bot] and orhun authored Feb 6, 2024
1 parent 816a4f5 commit e31c621
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 9 deletions.
53 changes: 47 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ name = "snowfall"
path = "src/bonus/snowfall.rs"

[dependencies]
ratatui = "0.25.0"
ratatui = "0.26.0"
crossterm = "0.27.0"
anyhow = "1.0.79"
enum-iterator = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion src/bonus/snowfall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crossterm::{
};
use palette::{convert::FromColorUnclamped, Hsv, Srgb};
use rand::{rngs::ThreadRng, Rng};
use ratatui::{prelude::*, widgets::*};
use ratatui::prelude::*;

struct RgbColorsWidget<'a> {
colors: &'a Vec<Vec<Color>>,
Expand Down
2 changes: 1 addition & 1 deletion src/stdout-vs-stderr-profiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crossterm::{
ExecutableCommand,
};
use palette::{convert::FromColorUnclamped, Hsv, Srgb};
use ratatui::{prelude::*, widgets::*};
use ratatui::prelude::*;

#[derive(Copy, Clone, Debug, Default)]
enum IoStream {
Expand Down

0 comments on commit e31c621

Please sign in to comment.