chore: bump deno_core (#21102)

This commit is contained in:
Matt Mastracci 2023-11-06 18:03:48 -07:00 committed by GitHub
parent 777c142d39
commit 50e4806a2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 8 deletions

12
Cargo.lock generated
View file

@ -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",

View file

@ -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" }

View file

@ -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,
})
}

View file

@ -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());