summaryrefslogtreecommitdiff
path: root/test_util
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-01-12 08:50:02 +0100
committerGitHub <noreply@github.com>2021-01-11 23:50:02 -0800
commit275a5c65a20529cd4a3d775b8d8c6e9b261c76b1 (patch)
tree9f861e36e70be809d5586128a24b9f7b4332e09e /test_util
parent36ff7bdf575e0547fabd8957ee778cc4224d5956 (diff)
upgrade: tokio 1.0 (#8779)
Co-authored-by: Bert Belder <bertbelder@gmail.com>
Diffstat (limited to 'test_util')
-rw-r--r--test_util/Cargo.toml18
1 files changed, 9 insertions, 9 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml
index 0e8099cec..e41f9a01d 100644
--- a/test_util/Cargo.toml
+++ b/test_util/Cargo.toml
@@ -12,17 +12,17 @@ name = "test_server"
path = "src/test_server.rs"
[dependencies]
-tokio = { version = "1.0", features = ["full"] }
-futures = "0.3"
-bytes = "1"
+async-stream = "0.3.0"
+bytes = "1.0.1"
+futures = "0.3.9"
+hyper = { version = "0.14.2", features = ["server", "http1", "runtime"] }
lazy_static = "1.4.0"
-os_pipe = "0.9"
-regex = "1.3.9"
+os_pipe = "0.9.2"
+regex = "1.4.3"
tempfile = "3.1.0"
-hyper = { version = "0.14.2", features = ["server", "http1", "runtime"] }
-tokio-tungstenite = "0.13"
-tokio-rustls = "0.22"
-async-stream = "0.3.0"
+tokio = { version = "1.0.1", features = ["full"] }
+tokio-rustls = "0.22.0"
+tokio-tungstenite = "0.13.0"
[target.'cfg(unix)'.dependencies]
pty = "0.2.2"