summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorLuca Bruno <lucab@lucabruno.net>2023-08-04 18:30:14 +0200
committerGitHub <noreply@github.com>2023-08-04 18:30:14 +0200
commit72d9f0609094adee954b271db12ca4c834f6b860 (patch)
tree26e1527465257ef3a77edae6dc635f030163622f /ext
parent5abf4cd951792a8d5da8ecc70b219a66f70dbe3e (diff)
chore(cargo): update async-compression/flate2/miniz to latest (#20049)
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 ```
Diffstat (limited to 'ext')
-rw-r--r--ext/http/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
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"