summaryrefslogtreecommitdiff
path: root/ext/http/Cargo.toml
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2022-04-20 22:53:56 +0200
committerGitHub <noreply@github.com>2022-04-20 22:53:56 +0200
commit8b258070542a81d217226fe832b26d81cf20113d (patch)
tree5650bbc0ef9967430b45471b4ffdad9159725f9d /ext/http/Cargo.toml
parent2a93c134dc93d70b5f6ea9d417c88207661884d5 (diff)
feat(ext/http): stream auto resp body compression (#14325)
This commit adds support for auto response body compression for streaming bodies.
Diffstat (limited to 'ext/http/Cargo.toml')
-rw-r--r--ext/http/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 2bdbfdade..b4a208228 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -14,6 +14,7 @@ description = "HTTP server implementation for Deno"
path = "lib.rs"
[dependencies]
+async-compression = { version = "0.3.1", features = ["tokio", "brotli", "gzip"] }
base64 = "0.13.0"
brotli = "3.3.3"
bytes = "1"