Replace futures-channel with tokio::sync in blocking client (#748)

This commit is contained in:
Sean McArthur
2019-12-23 12:01:23 -08:00
committed by GitHub
parent 0ab5df39cc
commit 47734f55f4
2 changed files with 10 additions and 15 deletions

View File

@@ -28,7 +28,7 @@ native-tls-vendored = ["native-tls", "native-tls-crate/vendored"]
rustls-tls = ["hyper-rustls", "tokio-rustls", "webpki-roots", "rustls", "__tls"]
blocking = ["futures-channel", "futures-util/io", "tokio/rt-threaded", "tokio/rt-core"]
blocking = ["futures-util/io", "tokio/rt-threaded", "tokio/rt-core", "tokio/sync"]
cookies = ["cookie_crate", "cookie_store"]
@@ -89,9 +89,6 @@ rustls = { version = "0.16", features = ["dangerous_configuration"], optional =
tokio-rustls = { version = "0.12", optional = true }
webpki-roots = { version = "0.17", optional = true }
## blocking
futures-channel = { version = "0.3.0", optional = true }
## cookies
cookie_crate = { version = "0.12", package = "cookie", optional = true }
cookie_store = { version = "0.10", optional = true }