Update tokio alpha.6

This commit is contained in:
Lucio Franco
2019-09-30 21:47:10 -04:00
committed by Sean McArthur
parent 7615867a5e
commit 9c5bc03908
4 changed files with 15 additions and 14 deletions

View File

@@ -42,12 +42,12 @@ members = [
] ]
[dependencies] [dependencies]
futures-core-preview = "=0.3.0-alpha.18" futures-core-preview = "=0.3.0-alpha.19"
futures-sink-preview = "=0.3.0-alpha.18" futures-sink-preview = "=0.3.0-alpha.19"
futures-util-preview = "=0.3.0-alpha.18" futures-util-preview = "=0.3.0-alpha.19"
tokio-codec = "=0.2.0-alpha.5" tokio-codec = "=0.2.0-alpha.6"
tokio-io = { version = "=0.2.0-alpha.5", features = ["util"] } tokio-io = { version = "=0.2.0-alpha.6", features = ["util"] }
tokio-sync = "=0.2.0-alpha.5" tokio-sync = "=0.2.0-alpha.6"
bytes = "0.4.7" bytes = "0.4.7"
http = "0.1.8" http = "0.1.8"
log = "0.4.1" log = "0.4.1"
@@ -69,9 +69,10 @@ serde = "1.0.0"
serde_json = "1.0.0" serde_json = "1.0.0"
# Akamai example # Akamai example
tokio = "=0.2.0-alpha.5" tokio = "=0.2.0-alpha.6"
env_logger = { version = "0.5.3", default-features = false } env_logger = { version = "0.5.3", default-features = false }
rustls = "0.16" rustls = "0.16"
tokio-rustls = "0.12.0-alpha.2" # tokio-rustls = "0.12.0-alpha.2"
tokio-rustls = { git = "https://github.com/taiki-e/tokio-rustls", branch = "tokio02alpha6" }
webpki = "0.21" webpki = "0.21"
webpki-roots = "0.17" webpki-roots = "0.17"

View File

@@ -9,7 +9,7 @@ edition = "2018"
h2 = { path = "../.." } h2 = { path = "../.." }
env_logger = { version = "0.5.3", default-features = false } env_logger = { version = "0.5.3", default-features = false }
futures-preview = "=0.3.0-alpha.18" futures-preview = "=0.3.0-alpha.19"
honggfuzz = "0.5" honggfuzz = "0.5"
http = "0.1.3" http = "0.1.3"
tokio = "=0.2.0-alpha.5" tokio = "=0.2.0-alpha.6"

View File

@@ -9,7 +9,7 @@ h2 = { path = "../..", features = ["unstable-stream", "unstable"] }
bytes = "0.4.7" bytes = "0.4.7"
env_logger = "0.5.9" env_logger = "0.5.9"
futures-preview = "=0.3.0-alpha.18" futures-preview = "=0.3.0-alpha.19"
http = "0.1.5" http = "0.1.5"
string = "0.2" string = "0.2"
tokio = "=0.2.0-alpha.5" tokio = "=0.2.0-alpha.6"

View File

@@ -10,5 +10,5 @@ edition = "2018"
[dev-dependencies] [dev-dependencies]
h2-support = { path = "../h2-support" } h2-support = { path = "../h2-support" }
log = "0.4.1" log = "0.4.1"
futures-preview = "=0.3.0-alpha.18" futures-preview = "=0.3.0-alpha.19"
tokio = "=0.2.0-alpha.5" tokio = "=0.2.0-alpha.6"