summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-07-10 14:51:55 +0100
committerGitHub <noreply@github.com>2024-07-10 13:51:55 +0000
commit8b34c4d75b3f9ae27380e30c7d192fe55e40196b (patch)
tree37702478197ea787c9800a4e49fa6465e2692531 /Cargo.toml
parent82f9216610ec9cc32697ca77cb95da4b229117d4 (diff)
fix: memory leak when transpiling (#24490)
This commit fixes memory leak described in https://github.com/denoland/deno/issues/24380. This is done by upgrading following crates: - deno_ast - deno_graph - eszip - dprint-plugin-typescript - deno_lint - deno_doc - deno_emit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 11ed86c23..13e19979f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,7 +43,7 @@ license = "MIT"
repository = "https://github.com/denoland/deno"
[workspace.dependencies]
-deno_ast = { version = "=0.39.2", features = ["transpiling"] }
+deno_ast = { version = "=0.40.0", features = ["transpiling"] }
deno_core = { version = "0.293.0" }
deno_bench_util = { version = "0.152.0", path = "./bench_util" }