fix client example

This commit is contained in:
quininer 2018-03-24 11:28:45 +08:00
parent d0f13ce5f9
commit 40837e4805
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,9 @@ tokio-rustls = { path = "../..", default-features = false, features = [ "tokio"
tokio = "0.1"
tokio-core = "0.1"
tokio-file-unix = "0.4"
clap = "2.26"
webpki-roots = "0.14"
[target.'cfg(unix)'.dependencies]
tokio-file-unix = "0.4"

View File

@ -19,9 +19,6 @@ use clap::{ App, Arg };
use rustls::ClientConfig;
use tokio_rustls::ClientConfigExt;
#[cfg(not(unix))]
use std::io::{Read, Write};
fn app() -> App<'static, 'static> {
App::new("client")
.about("tokio-rustls client example")
@ -95,6 +92,7 @@ fn main() {
// The network I/O will still be asynchronous and non-blocking.
#[cfg(not(unix))]
{
use std::io::{ Read, Write };
use tokio::net::TcpStream;
let socket = TcpStream::connect(&addr);