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

fix: errors with CallSite methods (#24907)

Fixes https://github.com/denoland/deno/issues/24898
This commit is contained in:
Marvin Hagemeister 2024-08-06 11:20:09 +02:00 committed by GitHub
parent bbf23190d4
commit 7f6b484684
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

12
Cargo.lock generated
View file

@ -1357,9 +1357,9 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.302.0"
version = "0.303.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e249fa30a9ee3320f5b1a69f86be1d98db234a112671ad85f648c876a6705"
checksum = "a9cd2cc931f61dee2db67ce9d032d229dda981be29d68dfd530a3dc1187ddd6b"
dependencies = [
"anyhow",
"bincode",
@ -1843,9 +1843,9 @@ dependencies = [
[[package]]
name = "deno_ops"
version = "0.178.0"
version = "0.179.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df4f8e16146f71cd35f3730350005be64807e37a89900366b55d6d798ab545a"
checksum = "1dbb9802b8b976e73872ae6e03303532e6056236467053aa6df02f7deb33488c"
dependencies = [
"proc-macro-rules",
"proc-macro2",
@ -6078,9 +6078,9 @@ dependencies = [
[[package]]
name = "serde_v8"
version = "0.211.0"
version = "0.212.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74f34bfd3eb4e7d79bfb7ec0c0870cc4413289c047502c87e3011f09a5d0dd98"
checksum = "bf9a8693e4e54bf21fe51b953b10f98a0e32040671f18c4065f6014f0317ae80"
dependencies = [
"num-bigint",
"serde",

View file

@ -45,7 +45,7 @@ repository = "https://github.com/denoland/deno"
[workspace.dependencies]
deno_ast = { version = "=0.41.2", features = ["transpiling"] }
deno_core = { version = "0.302.0" }
deno_core = { version = "0.303.0" }
deno_bench_util = { version = "0.158.0", path = "./bench_util" }
deno_lockfile = "0.20.0"