You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
claudbg/.beans/claudbg-78xt--tui-add-ratat...

927 B

title status type created_at updated_at parent
TUI: add ratatui + crossterm dependencies todo task 2026-03-30T04:45:06Z 2026-03-30T04:45:06Z claudbg-i6l2

Add ratatui and crossterm to Cargo.toml.

Changes

ratatui   = "0.29"   # TUI framework
crossterm = "0.28"   # terminal backend (raw mode, event reading)

Ratatui ships its own crossterm backend feature; use ratatui = { version = "0.29", features = ["crossterm"] } to pull both together.

Verify

Run cargo check to confirm the dependency resolves and there are no conflicts with existing deps (tokio, libsql).

Notes

  • Do NOT add termion — crossterm is cross-platform and the right choice.
  • The ratatui crate bundles the backend integration; no need for a separate tui-crossterm crate.
  • Check that ratatui 0.29 is available; if not use the latest stable.

Relevant files

  • Cargo.toml