summaryrefslogtreecommitdiff
path: root/runtime/inspector_server.rs
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/inspector_server.rs
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/inspector_server.rs')
-rw-r--r--runtime/inspector_server.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/inspector_server.rs b/runtime/inspector_server.rs
index 48d8e0a8f..1f8cd5e71 100644
--- a/runtime/inspector_server.rs
+++ b/runtime/inspector_server.rs
@@ -270,7 +270,7 @@ async fn server(
let json_version_response = json!({
"Browser": name,
"Protocol-Version": "1.3",
- "V8-Version": deno_core::v8_version(),
+ "V8-Version": deno_core::v8::VERSION_STRING,
});
// Create the server manually so it can use the Local Executor