$cargo fmt

pull/719/head
k-nasa 5 years ago
parent ec4b09ecd0
commit e3bf89fc05

@ -1,13 +1,12 @@
use futures::select;
use futures::FutureExt;
use std::io::{self, BufReader as StdBufReader, BufRead};
use std::io::{self, BufRead, BufReader as StdBufReader};
use async_std::{
io::{BufReader},
io::BufReader,
net::{TcpStream, ToSocketAddrs},
prelude::*,
stream,
task,
stream, task,
};
type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;

@ -1,8 +1,8 @@
//! Echoes lines read on stdin to stdout.
use std::io::Write;
use async_std::io;
use async_std::task;
use std::io::Write;
fn main() -> io::Result<()> {
task::block_on(async {

Loading…
Cancel
Save