Remove tui-rs support and update ratatui support to 0.30.0#3
Merged
orhun merged 4 commits intoratatui:mainfrom Feb 21, 2026
Merged
Remove tui-rs support and update ratatui support to 0.30.0#3orhun merged 4 commits intoratatui:mainfrom
orhun merged 4 commits intoratatui:mainfrom
Conversation
|
Eagerly awaiting this |
tlongwell-block
added a commit
to aaif-goose/goose
that referenced
this pull request
Feb 20, 2026
Replace the tui-textarea dependency (via madsmao fork) with ratatui-textarea from the official ratatui org's fork. The upstream ratatui/ratatui-textarea main branch only supports ratatui 0.29, which conflicts with bat's unicode-width ^0.2.1 requirement. Using dotdash's PR #3 branch (pinned to commit sha) which adds ratatui 0.30 support via the split ratatui sub-crates. Changes: - Remove workspace [patch.crates-io] for tui-textarea - Switch goose-tui dep from tui-textarea to ratatui-textarea - Update all imports from tui_textarea to ratatui_textarea Ref: ratatui/ratatui-textarea#3
Member
|
This looks pretty good already! Can you fix the CI? |
BREAKING: This removes the no-backend feature flag, just disabling default features builds with no backend now.
No need to support anything older anymore.
a31abb7 to
b6bdb50
Compare
Contributor
Author
Ah, completely forgot to test docs and missed |
orhun
approved these changes
Feb 21, 2026
Member
orhun
left a comment
There was a problem hiding this comment.
amazing, thank you!
will create a new release shortly
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This removes all support for tui-rs, raises ratatui support to 0.30.0 by switching to the various new individual crates for the supported backends, core and widgets. It also updates the Rust edition to 2024 and raises the MSRV to 1.86.0 to match that of ratatui 0.30.0 so more modern features may be used.