summaryrefslogtreecommitdiff
path: root/cli
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 /cli
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 'cli')
-rw-r--r--cli/args/flags.rs2
-rw-r--r--cli/build.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 5518b4b7d..d0a690045 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -1427,7 +1427,7 @@ pub fn clap_root() -> Command {
crate::version::DENO_VERSION_INFO.release_channel.name(),
env!("PROFILE"),
env!("TARGET"),
- deno_core::v8_version(),
+ deno_core::v8::VERSION_STRING,
crate::version::DENO_VERSION_INFO.typescript
);
diff --git a/cli/build.rs b/cli/build.rs
index 05636f7f9..0b964ad43 100644
--- a/cli/build.rs
+++ b/cli/build.rs
@@ -332,7 +332,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) {
let snapshot_options = SnapshotOptions {
ts_version: ts::version(),
- v8_version: deno_core::v8_version(),
+ v8_version: deno_core::v8::VERSION_STRING,
target: std::env::var("TARGET").unwrap(),
};