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 /Cargo.toml | |
| 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 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index bf02f95ce..487e83f8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,7 +96,7 @@ encoding_rs = "=0.8.33" ecb = "=0.1.2" fastwebsockets = "=0.5.0" filetime = "0.2.16" -flate2 = { version = "1.0.26", features = ["zlib-ng"], default-features = false } +flate2 = { version = "1.0.26", default-features = false } fs3 = "0.5.0" futures = "0.3.21" glob = "0.3.1" @@ -107,6 +107,7 @@ httparse = "1.8.0" hyper = { version = "0.14.26", features = ["runtime", "http1"] } indexmap = { version = "2", features = ["serde"] } libc = "0.2.126" +libz-sys = { version = "1.1", default-features = false } log = "=0.4.20" lsp-types = "=0.94.1" # used by tower-lsp and "proposed" feature is unstable in patch releases memmem = "0.1.1" |
