diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-08-12 17:09:48 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2020-08-12 17:45:15 +0200 |
commit | 3d70a2b94eac4d4032b8b11039efe6d070fa114f (patch) | |
tree | 0f6ff94c72ff8c47b46567efe9b545b61c4878b7 /test_util | |
parent | 988790834e9611b45663e48a7bea49219da7511f (diff) |
upgrade: Rust crates
The following crates were _not_ upgraded to avoid having multiple
versions of the same crate in the dependency tree:
* tokio-tungstenite v0.10.1 -> v0.11.0
* swc_common v0. 8.0 -> v0. 9.1
* swc_ecmascript v0. 1.0 -> v0. 3.0
* webpki-roots v0.19.0 -> v0.20.0
* nix v0.17.0 -> v0.18.0
Diffstat (limited to 'test_util')
-rw-r--r-- | test_util/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml index 620f6b778..b41103ed0 100644 --- a/test_util/Cargo.toml +++ b/test_util/Cargo.toml @@ -12,9 +12,9 @@ path = "src/test_server.rs" [dependencies] tokio = { version = "0.2.22", features = ["full"] } futures = "0.3.5" -bytes = "0.5.5" +bytes = "0.5.6" lazy_static = "1.4.0" os_pipe = "0.9.2" regex = "1.3.9" tempfile = "3.1.0" -warp = { version = "0.2.3", features = ["tls"] } +warp = { version = "0.2.4", features = ["tls"] } |