diff --git a/Cargo.lock b/Cargo.lock index 5bd8cbf..f11d995 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.0", "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.0", "swc_ecma_parser", "swc_ecma_visit", "wasm-bindgen", @@ -579,9 +579,9 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.33.15" +version = "0.33.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3792c10fa5d3e93a705b31f13fdea4a6e68c3c20d4351e84ed1741b7864399cd" +checksum = "0a15b8a5ec7b3c87b5c602dec00caf3dbb07fe2daaaa1d144d0c00a612e0890c" dependencies = [ "ast_node", "better_scoped_tls", @@ -619,6 +619,23 @@ dependencies = [ "unicode-id", ] +[[package]] +name = "swc_ecma_ast" +version = "0.112.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f90ae61d067206a5ff0c3a63d7d279346fa6562c08e251e32a07654f5b9fab1" +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..84358cd 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.0" 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..fa89a23 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.0" swc_ecma_visit = "0.97.1"