summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2024-03-01 11:15:18 -0700
committerGitHub <noreply@github.com>2024-03-01 11:15:18 -0700
commit736b91edd002ae34082c473b37249f9256a6ba32 (patch)
treed08c1dfde5777fef622750b166bcf4dc947d22ba /Cargo.toml
parent7ac040833025bf234dec485ddaa6c459b25d2196 (diff)
perf(cli): use new deno_core timers (#22569)
Improves #19100 Fixes #20356 Replaces #20428 Changes made in deno_core to support this: - [x] Errors must be handled in setTimeout callbacks - [x] Microtask ordering is not-quite-right - [x] Timer cancellation must be checked right before dispatch - [x] Timer sanitizer - [x] Move high-res timer to deno_core - [x] Timers need opcall tracing
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 082058fab..6dea7d48e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,7 +43,7 @@ repository = "https://github.com/denoland/deno"
[workspace.dependencies]
deno_ast = { version = "0.34.1", features = ["transpiling"] }
-deno_core = { version = "0.265.0", features = ["snapshot_data_bincode"] }
+deno_core = { version = "0.266.0", features = ["snapshot_data_bincode"] }
deno_bench_util = { version = "0.134.0", path = "./bench_util" }
deno_lockfile = "0.19.0"