diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-11-11 07:20:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-11 07:20:12 -0700 |
commit | 56e76242f3d7082e412bc698ebc737d24910cb60 (patch) | |
tree | 1b7fc048e1a873b5b6d05870cd3485811966f671 /test_util | |
parent | 0c1ab2c7f7a6ebf7856df71dbd790d0d731f1b86 (diff) |
chore(ext/node): use libz-sys w/`zlib-ng` feature in node (#21158)
We only want one zlib dependency.
Zlib dependencies are reorganized so they use a hidden
`__vendored_zlib_ng` flag in cli that enables zlib-ng for both libz-sys
(used by ext/node) and flate2 (used by deno_web).
Diffstat (limited to 'test_util')
-rw-r--r-- | test_util/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml index ac83eb7c8..ac05af77a 100644 --- a/test_util/Cargo.toml +++ b/test_util/Cargo.toml @@ -21,7 +21,7 @@ bytes.workspace = true console_static_text.workspace = true denokv_proto.workspace = true fastwebsockets = { workspace = true, features = ["upgrade"] } -flate2.workspace = true +flate2 = { workspace = true, features = ["default"] } futures.workspace = true glob.workspace = true h2.workspace = true |