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"