Upgrade dependency to new version of tokio-util.

This commit is contained in:
Nick Mathewson 2022-02-25 08:48:00 -05:00
parent c627f50544
commit 55416937cc
3 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ thiserror = "1"
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4", features=["tokio", "native-tls" ] }
tokio-crate = { package = "tokio", version = "1.4", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros" ] }
pin-project = "1"
tokio-util = { version = "0.6", features = ["compat"] }
tokio-util = { version = "0.7.0", features = ["compat"] }
anyhow = "1.0.23"
tracing-subscriber = "0.3.0"
tempfile = "3.3"

View File

@ -45,7 +45,7 @@ typenum = "1.12"
zeroize = "1"
tokio-crate = { package = "tokio", version = "1.4", optional = true }
tokio-util = { version = "0.6", features = ["compat"], optional = true }
tokio-util = { version = "0.7.0", features = ["compat"], optional = true }
coarsetime = { version = "0.1.20", optional = true }

View File

@ -35,7 +35,7 @@ async-io = { version = "1.4.1", optional = true }
async-native-tls = { version = "0.4.0", optional = true }
tokio-crate = { package = "tokio", version = "1.4", optional = true, features = ["rt", "rt-multi-thread", "io-util", "net", "time" ] }
tokio-util = { version = "0.6", features = ["compat"], optional = true }
tokio-util = { version = "0.7.0", features = ["compat"], optional = true }
async-rustls = { version = "0.2.0", optional = true }
x509-signature = { version = "0.5.0", optional = true }