Skip to content

fix(deps): update all cargo dependencies#193

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-cargo-dependencies
Open

fix(deps): update all cargo dependencies#193
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-cargo-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 6, 2026

This PR contains the following updates:

Package Type Update Change
ratatui-textarea dependencies minor 0.8.00.9.0
tokio (source) dependencies patch 1.51.01.51.1

Release Notes

ratatui/ratatui-textarea (ratatui-textarea)

v0.9.0

Compare Source

We're excited to announce the new version of ratatui-textarea! 🎉

In this release, we have moved the long-standing pull requests from the original tui-textarea repository and merged them!

🚀 Features

Wrapping now respects Unicode grapheme boundaries, and Up/Down cursor movement follows
wrapped visual rows instead of only logical lines:

You can configure wrapping with TextArea::set_wrap_mode(...) and choose between
WrapMode::None, WrapMode::Word, WrapMode::Glyph, and WrapMode::WordOrGlyph:

use ratatui_textarea::{TextArea, WrapMode};

let mut textarea = TextArea::default();
textarea.set_wrap_mode(WrapMode::WordOrGlyph);

Placeholders can now be full ratatui_core::text::Text values instead of just a plain string
and style, so you can render rich multi-span and multi-line placeholder content while the
textarea is empty:

use ratatui_core::style::{Color, Style};
use ratatui_core::text::{Line, Span};
use ratatui_textarea::TextArea;

let mut textarea = TextArea::default();
textarea.set_styled_placeholder(Line::from(vec![
    Span::styled("Required: ", Style::default().fg(Color::Red)),
    Span::raw("enter your name"),
]));
use ratatui_textarea::TextArea;

let mut textarea = TextArea::from(["hello", "world"]);
assert!(textarea.clear());
assert!(textarea.is_empty());
  • Improve vim example with replace mode, arrow keys, J, S, r/R, Ctrl+[ by @​pm100 in #​22
🐛 Bug Fixes
  • Clamp cursor after undo/redo to prevent out-of-bounds panic by @​pm100 in #​20
  • Add portable-atomic feature for targets without native AtomicU64 by @​pm100 in #​21
  • Preserve modified flag in editor example by @​pm100 in #​12
  • Don't treat underscores as punctuation for word movement by @​pm100 in #​11
  • Use correct cursor scroll position for wide (CJK) characters by @​pm100 in #​10
📚 Documentation
tokio-rs/tokio (tokio)

v1.51.1: Tokio v1.51.1

Compare Source

1.51.1 (April 8th, 2026)

Fixed
  • sync: fix semaphore reopens after forget (#​8021)
  • net: surface errors from SO_ERROR on recv for UDP sockets on Linux (#​8001)
Fixed (unstable)
  • metrics: fix worker_local_schedule_count test (#​8008)
  • rt: do not leak fd when cancelling io_uring open operation (#​7983)

Configuration

📅 Schedule: (UTC)

  • 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

@renovate renovate bot force-pushed the renovate/all-cargo-dependencies branch from aab325b to ccb0639 Compare April 8, 2026 13:05
@renovate renovate bot changed the title fix(deps): update rust crate ratatui-textarea to 0.9.0 fix(deps): update all cargo dependencies Apr 8, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants