diff --git a/Cargo.toml b/Cargo.toml index 16ed9f4..81cd294 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,18 +17,18 @@ appveyor = { repository = "quininer/tokio-rustls" } [dependencies] futures-core = { version = "0.2.0", optional = true } futures-io = { version = "0.2.0", optional = true } -tokio = { version = "0.1.5", optional = true } +tokio = { version = "0.1.6", optional = true } rustls = "0.12" webpki = "0.18.0-alpha" [dev-dependencies] futures = "0.2.0" -tokio = "0.1.5" +tokio = "0.1.6" [features] default = [ "tokio" ] -unstable-futures = [ - "futures-core", - "futures-io", - "tokio/unstable-futures" -] +# unstable-futures = [ +# "futures-core", +# "futures-io", +# "tokio/unstable-futures" +# ] diff --git a/examples/server/Cargo.toml b/examples/server/Cargo.toml index 0d044f8..4bc4e8b 100644 --- a/examples/server/Cargo.toml +++ b/examples/server/Cargo.toml @@ -5,9 +5,9 @@ authors = ["quininer "] [dependencies] rustls = "0.12" -tokio-rustls = { path = "../..", default-features = false, features = [ "unstable-futures" ] } +tokio-rustls = { path = "../..", default-features = false, features = [ "tokio" ] } -tokio = { version = "0.1.5", features = [ "unstable-futures" ] } -futures = "0.2.0-beta" +tokio = { version = "0.1.6" } +# futures = "0.2.0-beta" clap = "2.26"