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 /ext/node/lib.rs | |
| 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 'ext/node/lib.rs')
| -rw-r--r-- | ext/node/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index d38f10f61..96c9aff63 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -18,6 +18,8 @@ use deno_fs::sync::MaybeSend; use deno_fs::sync::MaybeSync; use once_cell::sync::Lazy; +extern crate libz_sys as zlib; + pub mod analyze; pub mod errors; mod global; |
