From 6505d98cd481bef2193cd15be74895751a01e6fb Mon Sep 17 00:00:00 2001 From: Zemnmez's Renovate Bot Date: Tue, 30 Jul 2024 22:34:40 -0700 Subject: [PATCH] fix(deps): update swc monorepo --- Cargo.Bazel.lock | 58 +++++-- Cargo.lock | 58 +++++-- Cargo.toml | 8 +- cargo-bazel-lock.json | 354 ++++++++++++++++++++++++++++++++++++------ 4 files changed, 401 insertions(+), 77 deletions(-) diff --git a/Cargo.Bazel.lock b/Cargo.Bazel.lock index 239d1aeecf..7e1027d3af 100644 --- a/Cargo.Bazel.lock +++ b/Cargo.Bazel.lock @@ -27,6 +27,18 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "ahash" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + [[package]] name = "aho-corasick" version = "1.1.3" @@ -41,9 +53,6 @@ name = "allocator-api2" version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" -dependencies = [ - "serde", -] [[package]] name = "ansi_term" @@ -372,6 +381,10 @@ name = "hashbrown" version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", +] [[package]] name = "heck" @@ -911,13 +924,14 @@ dependencies = [ [[package]] name = "swc_allocator" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dae2f696639ba1834a7edb1765a5ea0a7ef57de52ac1403135929bd006748731" +checksum = "adc8bd3075d1c6964010333fae9ddcd91ad422a4f8eb8b3206a9b2b6afb4209e" dependencies = [ - "allocator-api2", "bumpalo", + "hashbrown", "ptr_meta", + "rustc-hash", "triomphe", ] @@ -935,9 +949,9 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.36.0" +version = "0.36.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df5ed098e191c0cb289aa89eeae8a5312993cf0997e7c83e011e0a7dd1f6ce7b" +checksum = "1802b1642488aec58597dc55ea88992c165660d6e44e9838d4d93f7b78ab95f3" dependencies = [ "ast_node", "better_scoped_tls", @@ -961,9 +975,9 @@ dependencies = [ [[package]] name = "swc_ecma_ast" -version = "0.117.0" +version = "0.117.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "536e973cd624cada731c22ad9ba3aa7a6432a5c1b6e002ec4f12809a8718da5d" +checksum = "a5da2f0310e8cd84b8c803095e75b2cbca872c71fc7f7404d4c9c8117d894960" dependencies = [ "bitflags 2.6.0", "is-macro", @@ -978,9 +992,9 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.148.0" +version = "0.148.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59627c3704453c1bcb283c51ee161a5acf9988c80f80ef0250743fede0406602" +checksum = "a8204235f635274dba4adc30c47ac896fd126ddfc53b27210676722423cbb2e7" dependencies = [ "either", "new_debug_unreachable", @@ -1342,3 +1356,23 @@ name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "zerocopy" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.71", +] diff --git a/Cargo.lock b/Cargo.lock index 4e3da6cdc8..986eee3059 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,14 +23,23 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "ahash" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + [[package]] name = "allocator-api2" version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" -dependencies = [ - "serde", -] [[package]] name = "ansi_term" @@ -359,6 +368,10 @@ name = "hashbrown" version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", +] [[package]] name = "heck" @@ -869,13 +882,14 @@ dependencies = [ [[package]] name = "swc_allocator" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dae2f696639ba1834a7edb1765a5ea0a7ef57de52ac1403135929bd006748731" +checksum = "adc8bd3075d1c6964010333fae9ddcd91ad422a4f8eb8b3206a9b2b6afb4209e" dependencies = [ - "allocator-api2", "bumpalo", + "hashbrown", "ptr_meta", + "rustc-hash", "triomphe", ] @@ -893,9 +907,9 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.36.0" +version = "0.36.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df5ed098e191c0cb289aa89eeae8a5312993cf0997e7c83e011e0a7dd1f6ce7b" +checksum = "1802b1642488aec58597dc55ea88992c165660d6e44e9838d4d93f7b78ab95f3" dependencies = [ "ast_node", "better_scoped_tls", @@ -919,9 +933,9 @@ dependencies = [ [[package]] name = "swc_ecma_ast" -version = "0.117.0" +version = "0.117.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "536e973cd624cada731c22ad9ba3aa7a6432a5c1b6e002ec4f12809a8718da5d" +checksum = "a5da2f0310e8cd84b8c803095e75b2cbca872c71fc7f7404d4c9c8117d894960" dependencies = [ "bitflags 2.6.0", "is-macro", @@ -936,9 +950,9 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.148.0" +version = "0.148.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59627c3704453c1bcb283c51ee161a5acf9988c80f80ef0250743fede0406602" +checksum = "a8204235f635274dba4adc30c47ac896fd126ddfc53b27210676722423cbb2e7" dependencies = [ "either", "new_debug_unreachable", @@ -1286,3 +1300,23 @@ name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "zerocopy" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] diff --git a/Cargo.toml b/Cargo.toml index d41958bab4..852caeacb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,12 +11,12 @@ edition = "2021" [dependencies] clap = { version = "=4.5.11", features = ["derive"] } -swc_common = "=0.36.0" +swc_common = "=0.36.2" sha2 = "=0.10.8" hex = "=0.4.3" serde_json = "=1.0.121" swc_atoms = "=0.6.7" rxp = "=0.2.0" -swc_ecma_parser = "=0.148.0" -swc_ecma_ast = "=0.117.0" -swc_allocator = "=0.1.6" +swc_ecma_parser = "=0.148.1" +swc_ecma_ast = "=0.117.4" +swc_allocator = "=0.1.8" diff --git a/cargo-bazel-lock.json b/cargo-bazel-lock.json index 872763091a..caf7efecbe 100644 --- a/cargo-bazel-lock.json +++ b/cargo-bazel-lock.json @@ -1,5 +1,5 @@ { - "checksum": "42a5c6cec46c0ad9b9bc49aae22546544d8735b687c7772428e79055d26272e2", + "checksum": "e516104014a406420733575804393094a96fd406746c9b26a9a0a0e23744093d", "crates": { "Inflector 0.11.4": { "name": "Inflector", @@ -149,6 +149,95 @@ ], "license_file": "LICENSE-0BSD" }, + "ahash 0.8.11": { + "name": "ahash", + "version": "0.8.11", + "package_url": "https://github.com/tkaitchuck/ahash", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/ahash/0.8.11/download", + "sha256": "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" + } + }, + "targets": [ + { + "Library": { + "crate_name": "ahash", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "ahash", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "ahash 0.8.11", + "target": "build_script_build" + }, + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "zerocopy 0.7.35", + "target": "zerocopy" + } + ], + "selects": { + "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ + { + "id": "once_cell 1.19.0", + "target": "once_cell" + } + ] + } + }, + "edition": "2018", + "version": "0.8.11" + }, + "build_script_attrs": { + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ], + "selects": {} + } + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "aho-corasick 1.1.3": { "name": "aho-corasick", "version": "1.1.3", @@ -236,18 +325,7 @@ "crate_features": { "common": [ "alloc", - "default", - "serde", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde 1.0.204", - "target": "serde" - } + "nightly" ], "selects": {} }, @@ -1078,6 +1156,7 @@ "crate_features": { "common": [ "allocator-api2", + "allocator_api", "boxed", "collections", "default" @@ -2290,6 +2369,29 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "ahash", + "allocator-api2", + "default", + "inline-more", + "nightly" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "ahash 0.8.11", + "target": "ahash" + }, + { + "id": "allocator-api2 0.2.18", + "target": "allocator_api2" + } + ], + "selects": {} + }, "edition": "2021", "version": "0.14.5" }, @@ -3156,7 +3258,7 @@ "target": "sha2" }, { - "id": "swc_allocator 0.1.6", + "id": "swc_allocator 0.1.8", "target": "swc_allocator" }, { @@ -3164,15 +3266,15 @@ "target": "swc_atoms" }, { - "id": "swc_common 0.36.0", + "id": "swc_common 0.36.2", "target": "swc_common" }, { - "id": "swc_ecma_ast 0.117.0", + "id": "swc_ecma_ast 0.117.4", "target": "swc_ecma_ast" }, { - "id": "swc_ecma_parser 0.148.0", + "id": "swc_ecma_parser 0.148.1", "target": "swc_ecma_parser" } ], @@ -5902,14 +6004,14 @@ ], "license_file": "LICENSE-APACHE" }, - "swc_allocator 0.1.6": { + "swc_allocator 0.1.8": { "name": "swc_allocator", - "version": "0.1.6", + "version": "0.1.8", "package_url": "https://github.com/swc-project/swc.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/swc_allocator/0.1.6/download", - "sha256": "dae2f696639ba1834a7edb1765a5ea0a7ef57de52ac1403135929bd006748731" + "url": "https://static.crates.io/crates/swc_allocator/0.1.8/download", + "sha256": "adc8bd3075d1c6964010333fae9ddcd91ad422a4f8eb8b3206a9b2b6afb4209e" } }, "targets": [ @@ -5934,24 +6036,29 @@ "crate_features": { "common": [ "default", + "nightly", "scoped" ], "selects": {} }, "deps": { "common": [ - { - "id": "allocator-api2 0.2.18", - "target": "allocator_api2" - }, { "id": "bumpalo 3.16.0", "target": "bumpalo" }, + { + "id": "hashbrown 0.14.5", + "target": "hashbrown" + }, { "id": "ptr_meta 0.1.4", "target": "ptr_meta" }, + { + "id": "rustc-hash 1.1.0", + "target": "rustc_hash" + }, { "id": "triomphe 0.1.13", "target": "triomphe" @@ -5960,7 +6067,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.6" + "version": "0.1.8" }, "license": "Apache-2.0", "license_ids": [ @@ -6027,14 +6134,14 @@ ], "license_file": null }, - "swc_common 0.36.0": { + "swc_common 0.36.2": { "name": "swc_common", - "version": "0.36.0", + "version": "0.36.2", "package_url": "https://github.com/swc-project/swc.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/swc_common/0.36.0/download", - "sha256": "df5ed098e191c0cb289aa89eeae8a5312993cf0997e7c83e011e0a7dd1f6ce7b" + "url": "https://static.crates.io/crates/swc_common/0.36.2/download", + "sha256": "1802b1642488aec58597dc55ea88992c165660d6e44e9838d4d93f7b78ab95f3" } }, "targets": [ @@ -6101,7 +6208,7 @@ "target": "siphasher" }, { - "id": "swc_allocator 0.1.6", + "id": "swc_allocator 0.1.8", "target": "swc_allocator" }, { @@ -6145,7 +6252,7 @@ ], "selects": {} }, - "version": "0.36.0" + "version": "0.36.2" }, "license": "Apache-2.0", "license_ids": [ @@ -6153,14 +6260,14 @@ ], "license_file": null }, - "swc_ecma_ast 0.117.0": { + "swc_ecma_ast 0.117.4": { "name": "swc_ecma_ast", - "version": "0.117.0", + "version": "0.117.4", "package_url": "https://github.com/swc-project/swc.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/swc_ecma_ast/0.117.0/download", - "sha256": "536e973cd624cada731c22ad9ba3aa7a6432a5c1b6e002ec4f12809a8718da5d" + "url": "https://static.crates.io/crates/swc_ecma_ast/0.117.4/download", + "sha256": "a5da2f0310e8cd84b8c803095e75b2cbca872c71fc7f7404d4c9c8117d894960" } }, "targets": [ @@ -6211,7 +6318,7 @@ "target": "swc_atoms" }, { - "id": "swc_common 0.36.0", + "id": "swc_common 0.36.2", "target": "swc_common" }, { @@ -6235,7 +6342,7 @@ ], "selects": {} }, - "version": "0.117.0" + "version": "0.117.4" }, "license": "Apache-2.0", "license_ids": [ @@ -6243,14 +6350,14 @@ ], "license_file": null }, - "swc_ecma_parser 0.148.0": { + "swc_ecma_parser 0.148.1": { "name": "swc_ecma_parser", - "version": "0.148.0", + "version": "0.148.1", "package_url": "https://github.com/swc-project/swc.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/swc_ecma_parser/0.148.0/download", - "sha256": "59627c3704453c1bcb283c51ee161a5acf9988c80f80ef0250743fede0406602" + "url": "https://static.crates.io/crates/swc_ecma_parser/0.148.1/download", + "sha256": "a8204235f635274dba4adc30c47ac896fd126ddfc53b27210676722423cbb2e7" } }, "targets": [ @@ -6319,11 +6426,11 @@ "target": "swc_atoms" }, { - "id": "swc_common 0.36.0", + "id": "swc_common 0.36.2", "target": "swc_common" }, { - "id": "swc_ecma_ast 0.117.0", + "id": "swc_ecma_ast 0.117.4", "target": "swc_ecma_ast" }, { @@ -6345,7 +6452,7 @@ } }, "edition": "2021", - "version": "0.148.0" + "version": "0.148.1" }, "license": "Apache-2.0", "license_ids": [ @@ -8822,6 +8929,120 @@ "MIT" ], "license_file": "license-apache-2.0" + }, + "zerocopy 0.7.35": { + "name": "zerocopy", + "version": "0.7.35", + "package_url": "https://github.com/google/zerocopy", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/zerocopy/0.7.35/download", + "sha256": "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "zerocopy", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "zerocopy", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "simd" + ], + "selects": {} + }, + "edition": "2018", + "proc_macro_deps": { + "common": [], + "selects": { + "cfg(any())": [ + { + "id": "zerocopy-derive 0.7.35", + "target": "zerocopy_derive" + } + ] + } + }, + "version": "0.7.35" + }, + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "BSD-2-Clause", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "zerocopy-derive 0.7.35": { + "name": "zerocopy-derive", + "version": "0.7.35", + "package_url": "https://github.com/google/zerocopy", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/zerocopy-derive/0.7.35/download", + "sha256": "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "zerocopy_derive", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "zerocopy_derive", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.86", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.36", + "target": "quote" + }, + { + "id": "syn 2.0.71", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.7.35" + }, + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "BSD-2-Clause", + "MIT" + ], + "license_file": "LICENSE-APACHE" } }, "binary_crates": [ @@ -8896,6 +9117,7 @@ "x86_64-unknown-linux-gnu", "x86_64-unknown-nixos-gnu" ], + "cfg(any())": [], "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -8921,6 +9143,40 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], + "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "aarch64-fuchsia", + "aarch64-linux-android", + "aarch64-pc-windows-msvc", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-nixos-gnu", + "aarch64-unknown-nto-qnx710", + "arm-unknown-linux-gnueabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabi", + "i686-apple-darwin", + "i686-linux-android", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", + "s390x-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasi", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-fuchsia", + "x86_64-linux-android", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -9131,11 +9387,11 @@ "rxp 0.2.0", "serde_json 1.0.121", "sha2 0.10.8", - "swc_allocator 0.1.6", + "swc_allocator 0.1.8", "swc_atoms 0.6.7", - "swc_common 0.36.0", - "swc_ecma_ast 0.117.0", - "swc_ecma_parser 0.148.0" + "swc_common 0.36.2", + "swc_ecma_ast 0.117.4", + "swc_ecma_parser 0.148.1" ], "direct_dev_deps": [] }