Expand imports

tokio is a heavy dependency. This gives us some visibility into
what we're using.
This commit is contained in:
Greg Fitzgerald
2019-02-17 11:53:57 -07:00
parent e9b0e3cb9d
commit 2f1fe726f5
2 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
use bincode::{deserialize, serialize};
use byteorder::{ByteOrder, LittleEndian};
use bytes::{Bytes, BytesMut};
use log::*;
use log::{debug, info, trace, warn};
use serde_derive::{Deserialize, Serialize};
use solana_metrics;
use solana_metrics::influxdb;
@@ -27,7 +27,7 @@ use std::thread;
use std::time::Duration;
use tokio;
use tokio::net::TcpListener;
use tokio::prelude::*;
use tokio::prelude::{Future, Read, Sink, Stream, Write};
use tokio_codec::{BytesCodec, Decoder};
#[macro_export]