fix(deps): update rust crate tabled to 0.20.0 #58

Open
renovate wants to merge 1 commit from renovate/tabled-0.x into main
Collaborator

This PR contains the following updates:

Package Type Update Change
tabled dependencies minor 0.16.0 -> 0.20.0

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

zhiburt/tabled (tabled)

v0.20.0

Added
  • Added Table::nohead function just like Table::new but with no header.
  • Added Table::with_capacity function just like Table::new but with an exact number of rows.
Changed
  • Changed with(Border) logic to set only outer border instead of border of all cells.
  • Made a number of refactorings of tabled::grid::dimension::* modules.
  • Made small optimization of Wrap::text and Truncate::text.
  • Made small optimization of Text::new.
  • Brought up to date benchmarks.
  • Renamed Columns::single into Columns::one.
  • Renamed Rows::single into Rows::one.
  • Moved back to fnv from ahash cause of WASM build.
  • Moved back to old Wrap::keep_words logic where we preserving all content.
Fixed
  • Fixed dependency testing_table inclusion (by @​klensy).
  • Fixed WASM build (by @​cptpiepmatz).
  • Fixed not properly working caching logic of TableOption::hint.

v0.19.0

Added
  • Added tabled::assert module.
  • Added #[tabled(map)] macro.
  • Added derive::display::bool function.
  • Added derive::display::wrap and derive::display::truncate function.
  • Added Locator::value.
  • Added Table::get_dimension function.
  • Added ANSI link handling in Width::truncate.
  • Added Upper Title Case and lower title case options for rename_all.
  • Added no_std in testing_table.
Changed
  • Changed Reverse interface.
  • Changed Position interface.
  • Changed tabled::grid::dimension structures.
  • Changed IterTable interface.
  • Migrated ron to 0.10.
  • Renamed ColumnNames::default() into ColumnsNames::head().
  • Renamed BorderSpanCorrection into BorderCorrection::span().
  • Renamed Offset::Begin into Offset::Start.
  • Moved Offset out of tabled into papergrid.
  • Imroved wrap logic.
  • Switch underlying hash algorithm.
  • Improved README (by @​romanz).
  • Improved README (by @​Diddy42).
Fixed
  • Fixed no_std build (in actuall no_std env).
  • Fixed wrap emojie issue (releated to int overlap).
  • Fixed LineText<LastColumn>.

v0.18.0

Added
  • Added #[tabled(display(Type, "function", arg1, arg2))] - a derive helper (propoused by @​georgewhewell).
  • Added Table::kv - a new type of table layout.
  • Added new Span logic with negative and 0 spans.
  • Added LineText::align to stick text on border to specific location.
  • Added LayoutIterator to navigate Table::kv easier.
  • Added Tabled implementation for Option<T>.
Changed
  • Renamed #[tabled(display_with)] into #[tabled(display)].
  • Changed MSRV to the 1.83.
  • Removed owo-colors dependency.
  • Migrated owo-colors to 3.5 (by @​joshtriplett).
  • Migrated heck to 0.5 (by @​marxin).
  • Migrated syn to 2.0 (By @​wyatt-herkamp).
Fixed

v0.17.0

Added
  • Added Color::rgb_fg, Color::rgb_bg (by @​k86td)
  • Added ObjectIterator: so things like Rows::new(1..10).step_by(2) be possible.
  • Added support for Rows::last() + 100 and Columns::last() + 100 add operation.
  • Added left|right specifiers to PriorityMax and PriorityMin.
  • Added Priority factory to create different priorities. Basically a more convinient way.
  • Added a descriptive error message to testing_table::assert_table.
  • Added Builder::from(HashMap::new()) implementation.
  • Added CleanCharset::clean("") function for cases where we build a table by Builder.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [tabled](https://github.com/zhiburt/tabled) | dependencies | minor | `0.16.0` -> `0.20.0` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>zhiburt/tabled (tabled)</summary> ### [`v0.20.0`](https://github.com/zhiburt/tabled/blob/HEAD/CHANGELOG.md#0200---2025-05-06) ##### Added - Added `Table::nohead` function just like `Table::new` but with no header. - Added `Table::with_capacity` function just like `Table::new` but with an exact number of rows. ##### Changed - Changed `with(Border)` logic to set only outer border instead of border of all cells. - Made a number of refactorings of `tabled::grid::dimension::*` modules. - Made small optimization of `Wrap::text` and `Truncate::text`. - Made small optimization of `Text::new`. - Brought up to date benchmarks. - Renamed `Columns::single` into `Columns::one`. - Renamed `Rows::single` into `Rows::one`. - Moved back to `fnv` from `ahash` cause of WASM build. - Moved back to old `Wrap::keep_words` logic where we preserving all content. ##### Fixed - Fixed dependency `testing_table` inclusion (by [@&#8203;klensy](https://github.com/klensy)). - Fixed `WASM` build (by [@&#8203;cptpiepmatz](https://github.com/cptpiepmatz)). - Fixed not properly working caching logic of `TableOption::hint`. ### [`v0.19.0`](https://github.com/zhiburt/tabled/blob/HEAD/CHANGELOG.md#0190---2025-24-04) ##### Added - Added `tabled::assert` module. - Added `#[tabled(map)]` macro. - Added `derive::display::bool` function. - Added `derive::display::wrap` and `derive::display::truncate` function. - Added `Locator::value`. - Added `Table::get_dimension` function. - Added `ANSI` link handling in `Width::truncate`. - Added `Upper Title Case` and `lower title case` options for `rename_all`. - Added `no_std` in `testing_table`. ##### Changed - Changed `Reverse` interface. - Changed `Position` interface. - Changed `tabled::grid::dimension` structures. - Changed `IterTable` interface. - Migrated `ron` to `0.10`. - Renamed `ColumnNames::default()` into `ColumnsNames::head()`. - Renamed `BorderSpanCorrection` into `BorderCorrection::span()`. - Renamed `Offset::Begin` into `Offset::Start`. - Moved `Offset` out of `tabled` into `papergrid`. - Imroved wrap logic. - Switch underlying hash algorithm. - Improved README (by [@&#8203;romanz](https://github.com/romanz)). - Improved README (by [@&#8203;Diddy42](https://github.com/Diddy42)). ##### Fixed - Fixed `no_std` build (in actuall `no_std` env). - Fixed wrap emojie issue (releated to int overlap). - Fixed `LineText<LastColumn>`. ### [`v0.18.0`](https://github.com/zhiburt/tabled/blob/HEAD/CHANGELOG.md#0180---2025-07-02) ##### Added - Added `#[tabled(display(Type, "function", arg1, arg2))]` - a derive helper (propoused by [@&#8203;georgewhewell](https://github.com/georgewhewell)). - Added `Table::kv` - a new type of table layout. - Added new `Span` logic with negative and 0 spans. - Added `LineText::align` to stick text on border to specific location. - Added `LayoutIterator` to navigate `Table::kv` easier. - Added `Tabled` implementation for `Option<T>`. ##### Changed - Renamed `#[tabled(display_with)]` into `#[tabled(display)]`. - Changed MSRV to the 1.83. - Removed owo-colors dependency. - Migrated owo-colors to 3.5 (by [@&#8203;joshtriplett](https://github.com/joshtriplett)). - Migrated heck to 0.5 (by [@&#8203;marxin](https://github.com/marxin)). - Migrated syn to 2.0 (By [@&#8203;wyatt-herkamp](https://github.com/wyatt-herkamp)). ##### Fixed - Fixed `clippy` issues (by [@&#8203;joshtriplett](https://github.com/joshtriplett)). ### [`v0.17.0`](https://github.com/zhiburt/tabled/blob/HEAD/CHANGELOG.md#0170---2024-23-11) ##### Added - Added `Color::rgb_fg`, `Color::rgb_bg` (by [@&#8203;k86td](https://github.com/k86td)) - Added `ObjectIterator`: so things like `Rows::new(1..10).step_by(2)` be possible. - Added support for `Rows::last() + 100` and `Columns::last() + 100` add operation. - Added `left|right` specifiers to `PriorityMax` and `PriorityMin`. - Added `Priority` factory to create different priorities. Basically a more convinient way. - Added a descriptive error message to `testing_table::assert_table`. - Added `Builder::from(HashMap::new())` implementation. - Added `CleanCharset::clean("")` function for cases where we build a table by `Builder`. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZSJdfQ==-->
renovate added the
dependencies
renovate
labels 2025-08-01 14:14:15 +10:00
renovate added 1 commit 2025-08-01 14:14:16 +10:00
fix(deps): update rust crate tabled to 0.20.0
Some checks failed
Checking Renovate configuration / validate (pull_request) Successful in 1m22s
Build and test / Tests (pull_request) Failing after 1m34s
Build and test / Clippy (pull_request) Failing after 1m34s
Checking yaml / Run yamllint (pull_request) Successful in 2s
Build and test / Build AMD64 (pull_request) Failing after 1m16s
Build and test / Generate Documentation (pull_request) Failing after 1m9s
771406f260
kernald was assigned by renovate 2025-08-01 14:14:17 +10:00
renovate force-pushed renovate/tabled-0.x from 771406f260 to 7f341f130f 2025-08-01 15:06:46 +10:00 Compare
renovate force-pushed renovate/tabled-0.x from 7f341f130f to 29e8e4d8cd 2025-08-01 15:32:07 +10:00 Compare
renovate force-pushed renovate/tabled-0.x from 29e8e4d8cd to ddd834ad39 2025-08-14 05:53:05 +10:00 Compare
renovate force-pushed renovate/tabled-0.x from ddd834ad39 to 8c8537148c 2025-08-25 14:00:29 +10:00 Compare
renovate force-pushed renovate/tabled-0.x from 8c8537148c to ecd0593276 2025-09-22 19:02:25 +10:00 Compare
renovate force-pushed renovate/tabled-0.x from ecd0593276 to 321cfa50e3 2025-09-29 16:30:38 +10:00 Compare
renovate force-pushed renovate/tabled-0.x from 321cfa50e3 to a6a2a5b5b6 2025-10-28 18:46:00 +11:00 Compare
Some checks failed
Build and test / Tests (pull_request) Failing after 33s
Required
Details
Checking Renovate configuration / validate (pull_request) Successful in 1m13s
Required
Details
Checking yaml / Run yamllint (pull_request) Successful in 3s
Required
Details
Build and test / Generate Documentation (pull_request) Failing after 1m1s
Required
Details
Build and test / Clippy (pull_request) Failing after 1m10s
Required
Details
Build and test / Build AMD64 (pull_request) Failing after 1m10s
Required
Details
Some required checks were not successful.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/tabled-0.x:renovate/tabled-0.x
git checkout renovate/tabled-0.x
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: kernald/immich-tools#58
No description provided.