update deps

This commit is contained in:
thatscringebro
2026-03-10 14:24:27 -04:00
parent f8cd73795b
commit 5be0cd480e
2 changed files with 6 additions and 3 deletions

View File

@@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2024"
[dependencies]
chrono = "0.4.42"
ratatui = "0.29.0"
chrono = "0.4.44"
ratatui = "0.30.0"
sqlite = "0.37.0"

View File

@@ -39,7 +39,10 @@ fn main() -> Result<(), Box<dyn Error>> {
return Ok(());
}
fn run_app<B: Backend>(terminal: &mut Terminal<B>, app: &mut App) -> io::Result<bool> {
fn run_app<B: Backend>(terminal: &mut Terminal<B>, app: &mut App) -> io::Result<bool>
where
std::io::Error: From<<B as Backend>::Error>,
{
loop {
terminal.draw(|f| ui(f, app))?;