Skip to content

Commit

Permalink
build: bump crossterm remove anyhow
Browse files Browse the repository at this point in the history
  • Loading branch information
SkuldNorniern committed Jan 2, 2024
1 parent 6f77643 commit 7975356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,10 @@ fluere-config = { version = "0.1.2", path = "./fluere-config" }
fluereflow = { version = "0.3.2", path = "./fluereflow" }

ratatui = { version = "0.25.0", features = ["all-widgets"] }
crossterm = "0.26.1"
crossterm = "0.27"
dirs = "5.0.1"
logs = "0.7.1"
env_logger = "0.10.0"
anyhow = "1.0.79"


[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion src/net/live_fluereflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ fn draw_ui(
flow_columns[5],
);
}
async fn listen_for_exit_keys() -> Result<(), crossterm::ErrorKind> {
async fn listen_for_exit_keys() -> Result<(),std::io::Error> {
loop {
if event::poll(std::time::Duration::from_millis(100))? {
if let event::Event::Key(KeyEvent {
Expand Down

0 comments on commit 7975356

Please sign in to comment.