summaryrefslogtreecommitdiff
path: root/runtime/ops
diff options
context:
space:
mode:
authorsnek <snek@deno.com>2024-08-19 07:51:16 -0700
committerGitHub <noreply@github.com>2024-08-19 14:51:16 +0000
commitc0aa68a1e2a34777c01fd6f718b7718b14e3a18d (patch)
treef4e1147f3511757c2a53ca573ecc25a6aa98c4d2 /runtime/ops
parent526f39fbb9dacce12c69d24a55798d0bde8f2707 (diff)
feat: upgrade deno_core (#25042)
- Update ffi turbocall to use revised fast call api - Remove `v8_version` function calls - `*mut OwnedIsolate` is no longer stored in OpCtx gotham store
Diffstat (limited to 'runtime/ops')
-rw-r--r--runtime/ops/bootstrap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ops/bootstrap.rs b/runtime/ops/bootstrap.rs
index 88475f415..0d8c1dab8 100644
--- a/runtime/ops/bootstrap.rs
+++ b/runtime/ops/bootstrap.rs
@@ -54,7 +54,7 @@ impl Default for SnapshotOptions {
Self {
ts_version: "n/a".to_owned(),
- v8_version: deno_core::v8_version(),
+ v8_version: deno_core::v8::VERSION_STRING,
target,
}
}