From 7265641b59f6dc6c2b9d0d1def2bf930235755cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Apr 2024 00:00:07 +0000 Subject: [PATCH] chore(deps): bump swc_ecma_ast from 0.111.1 to 0.112.3 Bumps [swc_ecma_ast](https://github.com/swc-project/swc) from 0.111.1 to 0.112.3. - [Release notes](https://github.com/swc-project/swc/releases) - [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md) - [Commits](https://github.com/swc-project/swc/commits) --- updated-dependencies: - dependency-name: swc_ecma_ast dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 29 ++++++++++++++++++++++------ crates/does-it-throw-wasm/Cargo.toml | 2 +- crates/does-it-throw/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5bd8cbf..c5b572f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -86,7 +86,7 @@ name = "does-it-throw" version = "0.3.0" dependencies = [ "swc_common", - "swc_ecma_ast", + "swc_ecma_ast 0.112.3", "swc_ecma_parser", "swc_ecma_visit", ] @@ -101,7 +101,7 @@ dependencies = [ "serde-wasm-bindgen", "serde_json", "swc_common", - "swc_ecma_ast", + "swc_ecma_ast 0.112.3", "swc_ecma_parser", "swc_ecma_visit", "wasm-bindgen", @@ -579,9 +579,9 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.33.15" +version = "0.33.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3792c10fa5d3e93a705b31f13fdea4a6e68c3c20d4351e84ed1741b7864399cd" +checksum = "095c158fe55b36faeebb4274692643a6d7cdc5b7902e1d5968ddbe52b7de1d1c" dependencies = [ "ast_node", "better_scoped_tls", @@ -619,6 +619,23 @@ dependencies = [ "unicode-id", ] +[[package]] +name = "swc_ecma_ast" +version = "0.112.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a20cb4b0fcdc117296fdbe5979889a0a37b160cc76c2b152b1abb510d2a0340" +dependencies = [ + "bitflags", + "is-macro", + "num-bigint", + "phf", + "scoped-tls", + "string_enum", + "swc_atoms", + "swc_common", + "unicode-id", +] + [[package]] name = "swc_ecma_parser" version = "0.142.1" @@ -636,7 +653,7 @@ dependencies = [ "stacker", "swc_atoms", "swc_common", - "swc_ecma_ast", + "swc_ecma_ast 0.111.1", "tracing", "typed-arena", ] @@ -650,7 +667,7 @@ dependencies = [ "num-bigint", "swc_atoms", "swc_common", - "swc_ecma_ast", + "swc_ecma_ast 0.111.1", "swc_visit", "tracing", ] diff --git a/crates/does-it-throw-wasm/Cargo.toml b/crates/does-it-throw-wasm/Cargo.toml index 7af65af..8491915 100644 --- a/crates/does-it-throw-wasm/Cargo.toml +++ b/crates/does-it-throw-wasm/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib"] does-it-throw = { path = "../does-it-throw", version = "0.3.0"} swc_common = "0.33" swc_ecma_parser = "0.142.1" -swc_ecma_ast = "0.111.1" +swc_ecma_ast = "0.112.3" swc_ecma_visit = "0.97.1" wasm-bindgen = {version = "0.2.90"} serde-wasm-bindgen = "0.6.1" diff --git a/crates/does-it-throw/Cargo.toml b/crates/does-it-throw/Cargo.toml index 6c56973..81faaa5 100644 --- a/crates/does-it-throw/Cargo.toml +++ b/crates/does-it-throw/Cargo.toml @@ -13,5 +13,5 @@ bench = false [dependencies] swc_common = "0.33" swc_ecma_parser = "0.142.1" -swc_ecma_ast = "0.111.1" +swc_ecma_ast = "0.112.3" swc_ecma_visit = "0.97.1"