summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml2
-rw-r--r--cli/build.rs3
-rw-r--r--runtime/build.rs1
4 files changed, 10 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 79d797a41..05507c1e0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1113,9 +1113,9 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.225.0"
+version = "0.227.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68a284bcdd664d5dbbb8efce93b7822b9a0f125a1b53f0bc8edb876e4cee47ed"
+checksum = "d6218d09d15ef76df4f81178b9d97d176d7e780565c323a42c4860b67c214101"
dependencies = [
"anyhow",
"bytes",
@@ -1539,9 +1539,9 @@ dependencies = [
[[package]]
name = "deno_ops"
-version = "0.101.0"
+version = "0.103.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e1a813d4ea049601db9e5330c307b177c4f38e4baddf931c3c00c1a625b3dc1f"
+checksum = "14decb93ef6058b9c237ca86d8807563cc4ca19a3c0424e9ea8f1df3045723ad"
dependencies = [
"deno-proc-macro-rules",
"lazy-regex",
@@ -4783,9 +4783,9 @@ dependencies = [
[[package]]
name = "serde_v8"
-version = "0.134.0"
+version = "0.136.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b43265d540cbeb168d730b5df2069f8dfb9de318201f4e8f4f956876266432af"
+checksum = "813256f4379caece177ca747ffa35a7f4c0422cec9258f9cecaa9b15ded0cc5c"
dependencies = [
"bytes",
"derive_more",
diff --git a/Cargo.toml b/Cargo.toml
index c597abc08..e42a12cd5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -40,7 +40,7 @@ repository = "https://github.com/denoland/deno"
[workspace.dependencies]
deno_ast = { version = "0.31.2", features = ["transpiling"] }
-deno_core = { version = "0.225.0" }
+deno_core = { version = "0.227.0" }
deno_runtime = { version = "0.130.0", path = "./runtime" }
napi_sym = { version = "0.52.0", path = "./cli/napi/sym" }
diff --git a/cli/build.rs b/cli/build.rs
index 16b31081e..3c56af599 100644
--- a/cli/build.rs
+++ b/cli/build.rs
@@ -288,7 +288,6 @@ mod ts {
build_libs,
path_dts,
)],
-
// NOTE(bartlomieju): Compressing the TSC snapshot in debug build took
// ~45s on M1 MacBook Pro; without compression it took ~1s.
// Thus we're not not using compressed snapshot, trading off
@@ -305,6 +304,7 @@ mod ts {
);
})),
with_runtime_cb: None,
+ skip_op_registration: false,
});
for path in output.files_loaded_during_snapshot {
println!("cargo:rerun-if-changed={}", path.display());
@@ -402,6 +402,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) -> CreateSnapshotOutput {
extensions,
compression_cb: None,
with_runtime_cb: None,
+ skip_op_registration: false,
})
}
diff --git a/runtime/build.rs b/runtime/build.rs
index 2c6f0a4d8..606d341f3 100644
--- a/runtime/build.rs
+++ b/runtime/build.rs
@@ -250,6 +250,7 @@ mod startup_snapshot {
extensions,
compression_cb: None,
with_runtime_cb: None,
+ skip_op_registration: false,
});
for path in output.files_loaded_during_snapshot {
println!("cargo:rerun-if-changed={}", path.display());