From e7359d92dc9cd45e08c58f55dce5fe66338c3f4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 22:46:21 +0000 Subject: [PATCH] chore(deps): bump deno_url from 0.121.0 to 0.136.0 Bumps [deno_url](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_url 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..243515e3 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" @@ -1284,11 +1357,11 @@ dependencies = [ [[package]] name = "deno_url" -version = "0.121.0" +version = "0.136.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1511f888bd2a7c458c31536f5a13403202b5443ed01eeab8b6eb5b5eaff29e2" +checksum = "7978221ce33221ac7a18b649a5a18fe7983fbe2fddf5a6959fc672089c10f9a9" dependencies = [ - "deno_core 0.222.0", + "deno_core 0.256.0", "serde", "urlpattern", ] @@ -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" @@ -2376,7 +2459,7 @@ dependencies = [ "deno_fetch 0.145.0", "deno_fs", "deno_runtime", - "deno_url 0.121.0", + "deno_url 0.136.0", "deno_web", "deno_webidl 0.121.0", "lazy_static", @@ -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..9533d747 100644 --- a/ext/isorun/Cargo.toml +++ b/ext/isorun/Cargo.toml @@ -12,7 +12,7 @@ deno_core = "0.204.0" deno_fetch = "0.145.0" deno_fs = "0.28.0" deno_runtime = "0.126.0" -deno_url = "0.121.0" +deno_url = "0.136.0" deno_web = "0.149.0" deno_webidl = "0.121.0" lazy_static = "1.4.0"