From 72d9f0609094adee954b271db12ca4c834f6b860 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Fri, 4 Aug 2023 18:30:14 +0200 Subject: chore(cargo): update async-compression/flate2/miniz to latest (#20049) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This bumps `async-compression` dependency in `deno_http` to latest, in order to avoid having multiple duplicate versions. Related, it also unpin a stale `flate2` dependency so that the whole chain of `async-compression` -> `flate2` -> `miniz_oxide` can surface up to current versions. The lockfile entries for all of the above crates have been update accordingly; the new tree of dependencies looks like this: ``` $ cargo tree -i -p miniz_oxide miniz_oxide v0.7.1 └── flate2 v1.0.26 └── async-compression v0.4.1 ``` --- ext/http/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/http') diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index 1ac4c638f..f310e1cf1 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -22,7 +22,7 @@ name = "compressible" harness = false [dependencies] -async-compression = { version = "0.3.12", features = ["tokio", "brotli", "gzip"] } +async-compression = { version = "0.4", features = ["tokio", "brotli", "gzip"] } async-trait.workspace = true base64.workspace = true brotli = "3.3.4" -- cgit v1.2.3