diff options
author | snek <snek@deno.com> | 2024-08-19 07:51:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 14:51:16 +0000 |
commit | c0aa68a1e2a34777c01fd6f718b7718b14e3a18d (patch) | |
tree | f4e1147f3511757c2a53ca573ecc25a6aa98c4d2 /cli/build.rs | |
parent | 526f39fbb9dacce12c69d24a55798d0bde8f2707 (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/build.rs')
-rw-r--r-- | cli/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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(), }; |