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.
1.1 KiB
1.1 KiB
| title | status | type | priority | created_at | updated_at | parent |
|---|---|---|---|---|---|---|
| TUI: add ratatui + crossterm dependencies | completed | task | normal | 2026-03-30T04:45:06Z | 2026-03-30T16:37: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
ratatuicrate bundles the backend integration; no need for a separatetui-crosstermcrate. - Check that
ratatui 0.29is available; if not use the latest stable.
Relevant files
Cargo.toml