diff options
| author | Yosi Pramajaya <yosi.pramajaya@gmail.com> | 2021-01-10 19:20:47 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-10 13:20:47 +0100 |
| commit | 9e9e104664d8574c7480f0800e08326f56254f6f (patch) | |
| tree | e593f34ae0873edaad215db0653efe054778ffa1 /test_util/Cargo.toml | |
| parent | 43618954766a2ba525541501422bb6e7d5ccc913 (diff) | |
upgrade: tokio 0.1 in test_util crate (#8885)
This commit upgrades "tokio" and crates from tokio
ecosystem in "test_util" crate.
Diffstat (limited to 'test_util/Cargo.toml')
| -rw-r--r-- | test_util/Cargo.toml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml index 6eee12ebc..3831c68f1 100644 --- a/test_util/Cargo.toml +++ b/test_util/Cargo.toml @@ -12,16 +12,17 @@ name = "test_server" path = "src/test_server.rs" [dependencies] -tokio = { version = "0.2.22", features = ["full"] } -futures = "0.3.8" -bytes = "0.5.6" +tokio = { version = "1.0", features = ["full"] } +futures = "0.3" +bytes = "1" lazy_static = "1.4.0" -os_pipe = "0.9.2" +os_pipe = "0.9" regex = "1.3.9" tempfile = "3.1.0" -hyper = "0.13" -tokio-tungstenite = "0.11" -tokio-rustls = "0.14" +hyper = { version = "0.14.2", features = ["server", "http1", "runtime"] } +tokio-tungstenite = "0.13" +tokio-rustls = "0.22" +async-stream = "0.3.0" [target.'cfg(unix)'.dependencies] pty = "0.2.2" |
