diff options
| author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-08-08 09:19:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-08 00:19:05 -0700 |
| commit | 507e5b74ff21161ba8bd947d7d9cee317c0af379 (patch) | |
| tree | 8cfd58d46034803cd296d7b3a159c3f84896ec88 /cli/Cargo.toml | |
| parent | 4e4c96bf66111c6e8ba976ed24594edf7abfcbfb (diff) | |
fix: Don't shell out to `unzip` in deno upgrade/compile (#24926)
Use the `zip` crate instead
Fixes #23988.
Diffstat (limited to 'cli/Cargo.toml')
| -rw-r--r-- | cli/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6d9e1b7b2..168f2929c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -157,6 +157,7 @@ typed-arena = "=2.0.1" uuid = { workspace = true, features = ["serde"] } which.workspace = true zeromq.workspace = true +zip = { version = "2.1.6", default-features = false, features = ["deflate-flate2"] } zstd.workspace = true [target.'cfg(windows)'.dependencies] |
