-
Color derives Hash:
https://github.com/crossterm-rs/crossterm/blob/45498314a58e7433ac9c5850589cac76de1419ef/src/style/types/color.rs#L30-L31
But most others don't:
https://github.com/crossterm-…
-
I have a crossterm based application that I'd like to be able to run in scenarios other than directly running in a terminal. One example of this is running as a server based application that users c…
-
ratatui now re-exports crossterm components - this means we can remove crossterm dependency.
https://github.com/ratatui-org/ratatui/pull/1151
-
With the release of [tui-rs 0.17.0](https://github.com/fdehau/tui-rs/releases/tag/v0.17.0), crossterm is now the default backend for tui-rs.
We might consider migrating to crossterm if there are cl…
-
I have constructed a simple empty project using just a few cross term functions. When I try to build it with the native image, it compiles. But when I run the app, I get the following error:
```
Exc…
-
**Is your feature request related to a problem? Please describe.**
Upgrade crossterm to 0.27.0
**Describe the solution you'd like**
Crossterm v0.27.0 have been released for 9 months, many project…
-
## Description
Emojis are not rendered in tui widgets in terminal
## Minimal Reproducible Example
OS - Debian 12.4
Terminal - Alacritty 0.14.0
Font configuration
```
termina…
-
Progress bars actually come from [`indicatif`](https://docs.rs/indicatif/latest/indicatif/), which is based on `console`. Since all other components migrated to `crossterm`, we need to replace progres…
-
Termion fails to build on Windows, complaining about lacking the `sys` crate. Crossterm is a better alternative?
-
This looks to be the same as https://github.com/nushell/reedline/issues/594.
Looks like `reedline` calls into `crossterm` to query the current cursor position; `crossterm`, in turn, implements that…