initial commit

This commit is contained in:
nuru 2024-07-17 18:10:09 +00:00
parent 9b512ef48f
commit cad6911742
Signed by: nuru
GPG Key ID: FA028981DC86855A
4 changed files with 1424 additions and 0 deletions

1407
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -4,3 +4,12 @@ version = "0.1.0"
edition = "2021"
[dependencies]
crossterm = "0.27.0"
ratatui = "0.27.0"
rodio = "0.19.0"
[profile.release]
opt-level = "z"
panic = "abort"
strip = true
lto = true

6
ROADMAP.md Normal file
View File

@ -0,0 +1,6 @@
# Roadmap
- [] Write backend
- [] Write frontend
Pretty simple

2
src/ui.rs Normal file
View File

@ -0,0 +1,2 @@
use crossterm::event::{self, KeyCode, KeyEventKind};
use ratatui::{backend::CrosstermBackend, style::Stylize, widgets::Paragraph, Terminal};