From 6e16d5d540dcafd5673660e90f8cde960a5d2eec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 22:47:16 +0000 Subject: [PATCH] chore(deps): bump deno_webidl from 0.121.0 to 0.136.0 Bumps [deno_webidl](https://github.com/denoland/deno) from 0.121.0 to 0.136.0. - [Release notes](https://github.com/denoland/deno/releases) - [Changelog](https://github.com/denoland/deno/blob/main/Releases.md) - [Commits](https://github.com/denoland/deno/commits) --- updated-dependencies: - dependency-name: deno_webidl dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 177 +++++++++++++++++++++++++++++++++++++++--- ext/isorun/Cargo.toml | 2 +- 2 files changed, 167 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 55e70da4..6ae4f024 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -307,6 +307,21 @@ dependencies = [ "syn 2.0.48", ] +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + [[package]] name = "bitflags" version = "1.3.2" @@ -480,6 +495,12 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" +[[package]] +name = "cooked-waker" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147be55d677052dabc6b22252d5dd0fd4c29c8c27aa4f2fbef0f94aa003b406f" + [[package]] name = "core-foundation" version = "0.9.4" @@ -796,6 +817,43 @@ dependencies = [ "v8 0.79.2", ] +[[package]] +name = "deno_core" +version = "0.256.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd5997286bcc46199bbae727f43ee65cf4bd073ac2d240a36a6ceae3bfab14ac" +dependencies = [ + "anyhow", + "bit-set", + "bit-vec", + "bytes", + "cooked-waker", + "deno_core_icudata", + "deno_ops 0.132.0", + "deno_unsync 0.3.2", + "futures", + "libc", + "log", + "memoffset 0.9.0", + "parking_lot", + "pin-project", + "serde", + "serde_json", + "serde_v8 0.165.0", + "smallvec", + "sourcemap 7.0.1", + "static_assertions", + "tokio", + "url", + "v8 0.83.1", +] + +[[package]] +name = "deno_core_icudata" +version = "0.0.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a13951ea98c0a4c372f162d669193b4c9d991512de9f2381dd161027f34b26b1" + [[package]] name = "deno_crypto" version = "0.132.0" @@ -1153,6 +1211,21 @@ dependencies = [ "thiserror", ] +[[package]] +name = "deno_ops" +version = "0.132.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02163d08afdd6fcf21e37c399c7425987c7170203a853052a800e80c91c2e87b" +dependencies = [ + "proc-macro-rules", + "proc-macro2 1.0.76", + "quote 1.0.35", + "strum", + "strum_macros", + "syn 2.0.48", + "thiserror", +] + [[package]] name = "deno_runtime" version = "0.126.0" @@ -1323,11 +1396,11 @@ dependencies = [ [[package]] name = "deno_webidl" -version = "0.121.0" +version = "0.136.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1358d0bd1ebe7286e7beb0f81848ff1478a08ead6191d6b2ad16bf9b6d712b3" +checksum = "41eff4e69896e0f7fc432271c369052efd1d0b57a3d352688e2df800d1aa8dd9" dependencies = [ - "deno_core 0.222.0", + "deno_core 0.256.0", ] [[package]] @@ -1838,6 +1911,16 @@ dependencies = [ "winapi", ] +[[package]] +name = "fslock" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb" +dependencies = [ + "libc", + "winapi", +] + [[package]] name = "futures" version = "0.3.30" @@ -2378,7 +2461,7 @@ dependencies = [ "deno_runtime", "deno_url 0.121.0", "deno_web", - "deno_webidl 0.121.0", + "deno_webidl 0.136.0", "lazy_static", "magnus", "protoc", @@ -2694,6 +2777,15 @@ dependencies = [ "autocfg", ] +[[package]] +name = "memoffset" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +dependencies = [ + "autocfg", +] + [[package]] name = "mime" version = "0.3.17" @@ -2764,7 +2856,7 @@ dependencies = [ "bitflags 1.3.2", "cfg-if", "libc", - "memoffset", + "memoffset 0.7.1", "pin-utils", "static_assertions", ] @@ -3303,6 +3395,29 @@ version = "0.5.20+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" +[[package]] +name = "proc-macro-rules" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07c277e4e643ef00c1233393c673f655e3672cf7eb3ba08a00bdd0ea59139b5f" +dependencies = [ + "proc-macro-rules-macros", + "proc-macro2 1.0.76", + "syn 2.0.48", +] + +[[package]] +name = "proc-macro-rules-macros" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "207fffb0fe655d1d47f6af98cc2793405e85929bdbc420d685554ff07be27ac7" +dependencies = [ + "once_cell", + "proc-macro2 1.0.76", + "quote 1.0.35", + "syn 2.0.48", +] + [[package]] name = "proc-macro2" version = "0.4.30" @@ -3350,7 +3465,7 @@ dependencies = [ "regex", "syn 1.0.109", "tempfile", - "which", + "which 4.4.2", ] [[package]] @@ -3382,7 +3497,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0218039c514f9e14a5060742ecd50427f8ac4f85a6dc58f2ddb806e318c55ee" dependencies = [ "log", - "which", + "which 4.4.2", ] [[package]] @@ -4033,6 +4148,21 @@ dependencies = [ "v8 0.79.2", ] +[[package]] +name = "serde_v8" +version = "0.165.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88862d513bcbc04a7f93b0f454dffd0b01a5c0d8e1964c7532ec55f52b9a6351" +dependencies = [ + "bytes", + "derive_more", + "num-bigint", + "serde", + "smallvec", + "thiserror", + "v8 0.83.1", +] + [[package]] name = "sha-1" version = "0.10.0" @@ -5199,9 +5329,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eedac634b8dd39b889c5b62349cbc55913780226239166435c5cf66771792ea" dependencies = [ "bitflags 1.3.2", - "fslock", + "fslock 0.1.8", "once_cell", - "which", + "which 4.4.2", ] [[package]] @@ -5211,9 +5341,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b15561535230812a1db89a696f1f16a12ae6c2c370c6b2241c68d4cb33963faf" dependencies = [ "bitflags 1.3.2", - "fslock", + "fslock 0.1.8", "once_cell", - "which", + "which 4.4.2", +] + +[[package]] +name = "v8" +version = "0.83.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "546dcbb978f58aea3ad9286bd1df553f4ab7bbdc2e191cd4ae6c9a98fa95d1cd" +dependencies = [ + "bitflags 2.4.1", + "fslock 0.2.1", + "once_cell", + "which 5.0.0", ] [[package]] @@ -5393,6 +5535,19 @@ dependencies = [ "rustix", ] +[[package]] +name = "which" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14" +dependencies = [ + "either", + "home", + "once_cell", + "rustix", + "windows-sys 0.48.0", +] + [[package]] name = "whoami" version = "1.4.1" diff --git a/ext/isorun/Cargo.toml b/ext/isorun/Cargo.toml index d36f9027..81a2c919 100644 --- a/ext/isorun/Cargo.toml +++ b/ext/isorun/Cargo.toml @@ -14,7 +14,7 @@ deno_fs = "0.28.0" deno_runtime = "0.126.0" deno_url = "0.121.0" deno_web = "0.149.0" -deno_webidl = "0.121.0" +deno_webidl = "0.136.0" lazy_static = "1.4.0" magnus = { git = "https://github.com/eliias/magnus", rev = "4aef03adf7396a52155ad2ce56ed0f43cdfee040" } tokio = { version = "1.32.0", features = ["full"] }