Skip to content

Commit

Permalink
Fix formatting after changing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jhbabon committed Mar 13, 2021
1 parent d0cfce2 commit e756a19
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/data_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
use crate::common::Result;
use crate::events::Event;
use async_std::channel::Sender;
use async_std::io;
use async_std::prelude::*;
use async_std::stream;
use async_std::channel::Sender;

/// Run the data input task
pub async fn task<R>(stdin: R, sender: Sender<Event>) -> Result<()>
Expand Down
2 changes: 1 addition & 1 deletion src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use crate::common::{Result, Text, TextBuilder};
use crate::events::Event;
use crate::fuzzy;
use async_std::prelude::*;
use async_std::channel::{Receiver, Sender};
use async_std::prelude::*;
use std::collections::VecDeque;

const BUFFER_LIMIT: usize = 5000;
Expand Down
2 changes: 1 addition & 1 deletion src/person_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
use crate::common::{Prompt, Result};
use crate::config::Config;
use crate::events::Event;
use async_std::channel::Sender;
use async_std::io;
use async_std::prelude::*;
use async_std::channel::Sender;
use termion::event::Key;
use termion::input::TermRead;

Expand Down
2 changes: 1 addition & 1 deletion src/screen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use crate::config::Config;
use crate::events::Event;
use crate::state::State;
use crate::ui::Canvas;
use async_std::channel::Receiver;
use async_std::io;
use async_std::prelude::*;
use async_std::channel::Receiver;
use std::time::Instant;

/// Run the screen's task
Expand Down
2 changes: 1 addition & 1 deletion src/supervisor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ use crate::engine;
use crate::events::Event;
use crate::person_input;
use crate::screen;
use async_std::io;
use async_std::channel::{self, Receiver, Sender};
use async_std::io;
use async_std::task;

const CHANNEL_SIZE: usize = 1024;
Expand Down

0 comments on commit e756a19

Please sign in to comment.