Skip to content

build(deps): bump ratatui from 0.30.1 to 0.30.2 #40

build(deps): bump ratatui from 0.30.1 to 0.30.2

build(deps): bump ratatui from 0.30.1 to 0.30.2 #40

Triggered via pull request June 23, 2026 14:34
Status Success
Total duration 2m 50s
Artifacts

ci.yml

on: pull_request
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

1 warning and 1 notice
consider using `sort_by_key`: src/model/recent.rs#L85
warning: consider using `sort_by_key` --> src/model/recent.rs:85:5 | 85 | items.sort_by(|a, b| b.opened_at.cmp(&a.opened_at)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.96.0/index.html#unnecessary_sort_by = note: `#[warn(clippy::unnecessary_sort_by)]` on by default help: try | 85 - items.sort_by(|a, b| b.opened_at.cmp(&a.opened_at)); 85 + items.sort_by_key(|b| std::cmp::Reverse(b.opened_at)); |
test macos-latest
The macos-latest label will migrate to macOS 26 beginning June 15, 2026. For more information see https://github.com/actions/runner-images/issues/14167