feat: set rust-version in Cargo.toml, closes #77

Update zigbuild docker run command to download latest rust version
This commit is contained in:
Jack Wills
2025-12-09 11:10:19 +00:00
parent 65d7970033
commit 0763a1024f
13 changed files with 50 additions and 62 deletions
+2 -3
View File
@@ -237,8 +237,8 @@ impl Ui {
}
}
if crossterm::event::poll(POLL_RATE).unwrap_or(false) {
if let Ok(event) = event::read() {
if crossterm::event::poll(POLL_RATE).unwrap_or(false)
&& let Ok(event) = event::read() {
if let Event::Key(key) = event {
if key.kind == event::KeyEventKind::Press {
self.input_tx
@@ -264,7 +264,6 @@ impl Ui {
self.gui_state.lock().set_screen_width(width);
}
}
}
self.check_clear();
}
Ok(())