chore: update futures to 0.3.0 (#1741)

This commit is contained in:
Taiki Endo
2019-11-07 05:09:10 +09:00
committed by GitHub
parent 1a7f6fb201
commit 6f8b986bdb
12 changed files with 31 additions and 29 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ use tokio::net::{TcpListener, TcpStream};
use tokio::sync::{mpsc, Mutex};
use tokio_util::codec::{Framed, LinesCodec, LinesCodecError};
use futures::{Poll, SinkExt, Stream, StreamExt};
use futures::{SinkExt, Stream, StreamExt};
use std::collections::HashMap;
use std::env;
use std::error::Error;
@@ -38,7 +38,7 @@ use std::io;
use std::net::SocketAddr;
use std::pin::Pin;
use std::sync::Arc;
use std::task::Context;
use std::task::{Context, Poll};
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {