Skip to content

Commit

Permalink
fix(deps): update rust crate tabled to 0.16.0 (#2452)
Browse files Browse the repository at this point in the history
* fix(deps): update rust crate tabled to 0.16.0

* fix: tabled update

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jeff Dickey <[email protected]>
  • Loading branch information
renovate[bot] and jdx authored Aug 17, 2024
1 parent 5b92a77 commit e03455b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
17 changes: 8 additions & 9 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 @@ -103,7 +103,7 @@ simplelog = { version = "0.12.2" }
siphasher = "1"
strum = { version = "0.26.2", features = ["derive"] }
sys-info = "0.9.1"
tabled = { version = "0.15.0", features = ["ansi"] }
tabled = { version = "0.16", features = ["ansi"] }
tar = "0.4.40"
tempfile = "3.10.1"
tera = "1.19"
Expand Down
2 changes: 1 addition & 1 deletion src/ui/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type SettingMinWidth = Settings<SettingPriority, MinWidth>;

pub fn term_size_settings() -> SettingMinWidth {
Settings::default()
.with(Width::wrap(*TERM_WIDTH).priority::<PriorityMax>())
.with(Width::wrap(*TERM_WIDTH).priority(PriorityMax))
.with(Width::increase(*TERM_WIDTH))
// .with(Height::limit(*TERM_HEIGHT))
// .with(Height::increase(*TERM_HEIGHT))
Expand Down

0 comments on commit e03455b

Please sign in to comment.