init: Scaffold expected crates with initial dependencies.

This commit is contained in:
2026-03-13 21:53:26 -04:00
parent 165d8ff804
commit de0431778f
6 changed files with 2119 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
[package]
name = "pikl-tui"
description = "TUI frontend for pikl-menu."
version.workspace = true
edition.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
pikl-core = { path = "../pikl-core" }
ratatui = "0.30"
crossterm = { version = "0.29", features = ["event-stream"] }
tokio = { version = "1", features = ["sync", "macros", "rt"] }
futures = "0.3"