From a5ea051fdb6fabe935576dd62f6276bac2a0d49e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 08:05:28 +0000 Subject: [PATCH] chore(deps): bump swc_ecma_parser from 39.1.1 to 41.0.1 in /src-tauri Bumps [swc_ecma_parser](https://github.com/swc-project/swc) from 39.1.1 to 41.0.1. - [Release notes](https://github.com/swc-project/swc/releases) - [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG-CORE.md) - [Commits](https://github.com/swc-project/swc/commits) --- updated-dependencies: - dependency-name: swc_ecma_parser dependency-version: 41.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- src-tauri/Cargo.lock | 62 +++++++++++++++++++++++++++++++++++++------- src-tauri/Cargo.toml | 2 +- 2 files changed, 54 insertions(+), 10 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 623a43c5..53df9e6b 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -173,8 +173,8 @@ dependencies = [ "serde_norway", "specta", "specta-typescript", - "swc_common", - "swc_ecma_ast", + "swc_common 21.0.2", + "swc_ecma_ast 23.0.1", "swc_ecma_parser", "swc_ecma_visit", "tauri", @@ -4660,6 +4660,31 @@ dependencies = [ "url", ] +[[package]] +name = "swc_common" +version = "23.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353daaf5e6c2ad90efd4ff52270173074ded88fdba5a40f302c7c3a9b1c037fb" +dependencies = [ + "anyhow", + "ast_node", + "better_scoped_tls", + "bytes-str", + "either", + "from_variant", + "num-bigint", + "once_cell", + "rustc-hash", + "serde", + "siphasher 0.3.11", + "swc_atoms", + "swc_eq_ignore_macros", + "swc_visit", + "tracing", + "unicode-width", + "url", +] + [[package]] name = "swc_ecma_ast" version = "23.0.1" @@ -4674,16 +4699,35 @@ dependencies = [ "rustc-hash", "string_enum", "swc_atoms", - "swc_common", + "swc_common 21.0.2", + "swc_visit", + "unicode-id-start", +] + +[[package]] +name = "swc_ecma_ast" +version = "25.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a207e09f23885ff1f4354ebfdd4e715ccd4a68fca2e7e0df09baafbca850762e" +dependencies = [ + "bitflags 2.11.1", + "is-macro", + "num-bigint", + "once_cell", + "phf 0.11.3", + "rustc-hash", + "string_enum", + "swc_atoms", + "swc_common 23.0.1", "swc_visit", "unicode-id-start", ] [[package]] name = "swc_ecma_parser" -version = "39.1.1" +version = "41.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bca883cdbd6107a96f60a23fd90623c9a90cf37741fc08a3337cee9bbd6c4c1a" +checksum = "c309c89bf8f08cd064e67dda821009673895a85144417f811dfc1dc4ee71458c" dependencies = [ "bitflags 2.11.1", "either", @@ -4695,8 +4739,8 @@ dependencies = [ "smartstring", "stacker", "swc_atoms", - "swc_common", - "swc_ecma_ast", + "swc_common 23.0.1", + "swc_ecma_ast 25.0.0", "tracing", ] @@ -4709,8 +4753,8 @@ dependencies = [ "new_debug_unreachable", "num-bigint", "swc_atoms", - "swc_common", - "swc_ecma_ast", + "swc_common 21.0.2", + "swc_ecma_ast 23.0.1", "swc_visit", "tracing", ] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 78b254d5..7c7410be 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -42,7 +42,7 @@ log = "0.4" chrono = "0.4" swc_common = "21" swc_ecma_ast = "23" -swc_ecma_parser = "39" +swc_ecma_parser = "41" swc_ecma_visit = "23" dirs = "6" indexmap = { version = "2", features = ["serde"] }