summaryrefslogtreecommitdiff
path: root/cli/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 /cli/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 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml12
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 6462d30e0..e3cacb02b 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -67,17 +67,17 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposa
deno_cache_dir = { workspace = true }
deno_config = { workspace = true, features = ["workspace"] }
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
-deno_doc = { version = "=0.141.0", features = ["html", "syntect"] }
-deno_emit = "=0.43.0"
-deno_graph = { version = "=0.79.0", features = ["tokio_executor"] }
-deno_lint = { version = "=0.60.0", features = ["docs"] }
+deno_doc = { version = "=0.141.1", features = ["html", "syntect"] }
+deno_emit = "=0.43.1"
+deno_graph = { version = "=0.80.0", features = ["tokio_executor"] }
+deno_lint = { version = "=0.60.1", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm = "=0.21.4"
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_semver = "=0.5.6"
deno_task_shell = "=0.17.0"
deno_terminal.workspace = true
-eszip = "=0.72.1"
+eszip = "=0.72.2"
napi_sym.workspace = true
async-trait.workspace = true
@@ -99,7 +99,7 @@ dotenvy = "0.15.7"
dprint-plugin-json = "=0.19.3"
dprint-plugin-jupyter = "=0.1.3"
dprint-plugin-markdown = "=0.17.1"
-dprint-plugin-typescript = "=0.91.1"
+dprint-plugin-typescript = "=0.91.3"
env_logger = "=0.10.0"
fancy-regex = "=0.10.0"
faster-hex.workspace = true