Skip to content

Commit

Permalink
build(deps): bump ratatui from 0.26.3 to 0.27.0
Browse files Browse the repository at this point in the history
Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.26.3 to 0.27.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.26.3...v0.27.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and fujiapple852 committed Jun 29, 2024
1 parent 7dde9e1 commit f388685
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 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 crates/trippy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ derive_more.workspace = true
clap = { version = "4.4.0", default-features = false, features = [ "cargo", "derive", "wrap_help", "usage", "unstable-styles", "color", "suggestions", "error-context" ] }
clap_complete = "4.4.9"
humantime = "2.1.0"
ratatui = "0.26.3"
ratatui = "0.27.0"
crossterm = { version = "0.27.0", default-features = false, features = [ "events", "windows" ] }
chrono = { version = "0.4.38", default-features = false, features = [ "clock" ] }
serde_json = { version = "1.0.117", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/trippy/src/frontend/render/world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub fn render(f: &mut Frame<'_>, app: &TuiApp, rect: Rect) {
.direction(Direction::Vertical)
.constraints(MAP_LAYOUT)
.split(rect);
let info_rect = chunks[1].inner(&Margin {
let info_rect = chunks[1].inner(Margin {
vertical: 0,
horizontal: 16,
});
Expand Down

0 comments on commit f388685

Please sign in to comment.