1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix: bump deno_core to fix unsoundness (#23768)

Includes a Rust 1.78.0 fix:
https://github.com/denoland/deno_core/pull/735

Fixes deno homebrew crashes:

#23767
#23766
#23763

and https://github.com/Homebrew/homebrew-core/issues/171317
This commit is contained in:
Matt Mastracci 2024-05-10 12:44:24 -06:00 committed by GitHub
parent adc7b3de26
commit 93c6046d7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

16
Cargo.lock generated
View file

@ -1303,9 +1303,9 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.279.0"
version = "0.280.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6af4398065fca315c07f07c3a7074fc8928e0a0488eeb16b68f390ab9190ed97"
checksum = "12d26f2d3e243bbbdd0851ab542b20ec48ac1fcf6c64ab06e81133da3113ebdd"
dependencies = [
"anyhow",
"bincode",
@ -1764,9 +1764,9 @@ dependencies = [
[[package]]
name = "deno_ops"
version = "0.155.0"
version = "0.156.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5acf7e33e0000df00433e50334d42eb325bd1195d81e3d579d4cb09de601303e"
checksum = "8237b272db1a6cb941b8a5a63ba63539004a8263e8b0230a11136d76eea273f9"
dependencies = [
"proc-macro-rules",
"proc-macro2",
@ -5734,9 +5734,9 @@ dependencies = [
[[package]]
name = "serde_v8"
version = "0.188.0"
version = "0.189.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb49d0c52dba872ec78d826009b0cb0ec3b911753bda8b7e98f104cf88e0b936"
checksum = "893c995255d6fbf55c33166b651fd037c4e3cc7864bf82213ea18d0ec94ed165"
dependencies = [
"num-bigint",
"serde",
@ -7258,9 +7258,9 @@ dependencies = [
[[package]]
name = "v8"
version = "0.91.0"
version = "0.91.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03bdee44e85d6235cff99e1ed5b1016c53822c70d1cce3d51f421b27a125a1e8"
checksum = "69026e2e8af55a4d2f20c0c17f690e8b31472bf76ab75b1205d3a0fab60c8f84"
dependencies = [
"bitflags 2.5.0",
"fslock",

View file

@ -44,7 +44,7 @@ repository = "https://github.com/denoland/deno"
[workspace.dependencies]
deno_ast = { version = "=0.38.1", features = ["transpiling"] }
deno_core = { version = "0.279.0" }
deno_core = { version = "0.280.0" }
deno_bench_util = { version = "0.144.0", path = "./bench_util" }
deno_lockfile = "0.19.0"