From 8419b604300695e57cb6b1191e9daf638c65c828 Mon Sep 17 00:00:00 2001 From: OJ Kwon Date: Wed, 20 Apr 2022 01:05:02 -0700 Subject: [PATCH] fix(plugin): Align deps to fix build (#4377) --- crates/jsdoc/Cargo.toml | 2 +- crates/swc/Cargo.toml | 6 +++--- crates/swc_bundler/Cargo.toml | 2 +- crates/swc_cli/Cargo.toml | 4 ++-- crates/swc_common/Cargo.toml | 2 +- crates/swc_css_ast/Cargo.toml | 2 +- crates/swc_css_codegen/Cargo.toml | 4 ++-- crates/swc_css_lints/Cargo.toml | 2 +- crates/swc_css_minifier/Cargo.toml | 2 +- crates/swc_css_parser/Cargo.toml | 2 +- crates/swc_css_prefixer/Cargo.toml | 2 +- crates/swc_css_utils/Cargo.toml | 2 +- crates/swc_css_visit/Cargo.toml | 2 +- crates/swc_ecma_ast/Cargo.toml | 2 +- crates/swc_ecma_codegen/Cargo.toml | 4 ++-- crates/swc_ecma_dep_graph/Cargo.toml | 2 +- crates/swc_ecma_ext_transforms/Cargo.toml | 2 +- crates/swc_ecma_lints/Cargo.toml | 2 +- crates/swc_ecma_loader/Cargo.toml | 2 +- crates/swc_ecma_minifier/Cargo.toml | 2 +- crates/swc_ecma_parser/Cargo.toml | 2 +- crates/swc_ecma_preset_env/Cargo.toml | 2 +- crates/swc_ecma_quote/Cargo.toml | 2 +- crates/swc_ecma_quote_macros/Cargo.toml | 2 +- crates/swc_ecma_transforms/Cargo.toml | 2 +- crates/swc_ecma_transforms_base/Cargo.toml | 2 +- crates/swc_ecma_transforms_classes/Cargo.toml | 2 +- crates/swc_ecma_transforms_compat/Cargo.toml | 2 +- crates/swc_ecma_transforms_module/Cargo.toml | 2 +- crates/swc_ecma_transforms_optimization/Cargo.toml | 2 +- crates/swc_ecma_transforms_proposal/Cargo.toml | 2 +- crates/swc_ecma_transforms_react/Cargo.toml | 2 +- crates/swc_ecma_transforms_testing/Cargo.toml | 2 +- crates/swc_ecma_transforms_typescript/Cargo.toml | 2 +- crates/swc_ecma_utils/Cargo.toml | 2 +- crates/swc_ecma_visit/Cargo.toml | 2 +- crates/swc_error_reporters/Cargo.toml | 2 +- crates/swc_estree_ast/Cargo.toml | 2 +- crates/swc_estree_compat/Cargo.toml | 2 +- crates/swc_fast_graph/Cargo.toml | 2 +- crates/swc_html_ast/Cargo.toml | 2 +- crates/swc_html_codegen/Cargo.toml | 4 ++-- crates/swc_html_parser/Cargo.toml | 2 +- crates/swc_html_visit/Cargo.toml | 2 +- crates/swc_node_comments/Cargo.toml | 2 +- crates/swc_plugin/Cargo.toml | 6 +++--- crates/swc_plugin_proxy/Cargo.toml | 4 ++-- crates/swc_plugin_runner/Cargo.toml | 6 +++--- crates/swc_webpack_ast/Cargo.toml | 2 +- crates/testing/Cargo.toml | 2 +- 50 files changed, 61 insertions(+), 61 deletions(-) diff --git a/crates/jsdoc/Cargo.toml b/crates/jsdoc/Cargo.toml index 5c2b6b26134..8dacff9a18f 100644 --- a/crates/jsdoc/Cargo.toml +++ b/crates/jsdoc/Cargo.toml @@ -15,7 +15,7 @@ bench = false nom = "7.1.0" serde = {version = "1", features = ["derive"]} swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} [dev-dependencies] anyhow = "1" diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index b9ea86d002b..989abed6a09 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -48,7 +48,7 @@ serde_json = "1" sourcemap = "6" swc_atoms = { version = "0.2", path = "../swc_atoms" } swc_cached = { version = "0.1.0", path = "../swc_cached" } -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "sourcemap", "concurrent", "parking_lot", @@ -81,8 +81,8 @@ swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" } swc_ecmascript = { version = "0.147.0", path = "../swc_ecmascript" } swc_error_reporters = { version = "0.1.0", path = "../swc_error_reporters" } swc_node_comments = { version = "0.4.0", path = "../swc_node_comments" } -swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", optional = true } -swc_plugin_runner = { version = "0.53.0", path = "../swc_plugin_runner", optional = true, default-features = false } +swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", optional = true } +swc_plugin_runner = { version = "0.53.1", path = "../swc_plugin_runner", optional = true, default-features = false } swc_timer = { version = "0.5.0", path = "../swc_timer" } swc_visit = { version = "0.3.0", path = "../swc_visit" } tracing = "0.1.32" diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index d207aac8c05..350fdce4e2e 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -38,7 +38,7 @@ rayon = { version = "1", optional = true } relative-path = "1.2" retain_mut = "0.1.2" swc_atoms = { version = "0.2.4", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.105.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.29.0", path = "../swc_ecma_loader" } diff --git a/crates/swc_cli/Cargo.toml b/crates/swc_cli/Cargo.toml index 6a41ddc3390..01cb3e53c6d 100644 --- a/crates/swc_cli/Cargo.toml +++ b/crates/swc_cli/Cargo.toml @@ -32,8 +32,8 @@ relative-path = "1.6.1" serde = {version = "1", features = ["derive"]} serde_json = {version = "1", features = ["unbounded_depth"]} swc = {version = "0.169.0", path = "../swc"} -swc_common = { version = "0.17.20", path = "../swc_common"} -swc_plugin_runner = {version = "0.53.0", path = "../swc_plugin_runner", default-features = false, optional = true} +swc_common = { version = "0.17.23", path = "../swc_common"} +swc_plugin_runner = {version = "0.53.1", path = "../swc_plugin_runner", default-features = false, optional = true} swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"} tracing = "0.1.32" tracing-chrome = "0.5.0" diff --git a/crates/swc_common/Cargo.toml b/crates/swc_common/Cargo.toml index 4362f5ecd6a..85732171d7c 100644 --- a/crates/swc_common/Cargo.toml +++ b/crates/swc_common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_common" repository = "https://github.com/swc-project/swc.git" -version = "0.17.22" +version = "0.17.23" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 3708cdce97f..14d6bb0d3bd 100644 --- a/crates/swc_css_ast/Cargo.toml +++ b/crates/swc_css_ast/Cargo.toml @@ -16,4 +16,4 @@ is-macro = "0.2.0" serde = {version = "1.0.127", features = ["derive"]} string_enum = {version = "0.3.1", path = "../string_enum/"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 4f39c874be6..21e68dc6e4b 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -16,12 +16,12 @@ bench = false auto_impl = "0.5.0" bitflags = "1.3.2" swc_atoms = {version = "0.2.7", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"} [dev-dependencies] -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "sourcemap", ]} swc_css_parser = {version = "0.100.0", path = "../swc_css_parser"} diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index c3fec859fcb..450b0851cfe 100644 --- a/crates/swc_css_lints/Cargo.toml +++ b/crates/swc_css_lints/Cargo.toml @@ -19,7 +19,7 @@ rayon = "1.5.1" serde = {version = "1.0.133", features = ["derive"]} swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_cached = {version = "0.1.0", path = "../swc_cached"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"} thiserror = "1.0.30" diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index bdae185a2c8..f756f2d28f7 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -14,7 +14,7 @@ bench = false [dependencies] swc_atoms = {version = "0.2.9", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" } swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index b4868fea48f..62c9351b64b 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -19,7 +19,7 @@ debug = [] bitflags = "1.2.1" lexical = "6.1.0" swc_atoms = { version = "0.2.7", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" } [dev-dependencies] diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index b0db822c325..ffc4e2d1d38 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -14,7 +14,7 @@ bench = false [dependencies] swc_atoms = { version = "0.2.7", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" } swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" } swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index cf7729c678d..f1c9e472f65 100644 --- a/crates/swc_css_utils/Cargo.toml +++ b/crates/swc_css_utils/Cargo.toml @@ -17,6 +17,6 @@ once_cell = "1.10.0" serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.2.7", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" } swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index b6de2571d21..6461606895c 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -13,6 +13,6 @@ bench = false [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_visit = {version = "0.3.0", path = "../swc_visit"} diff --git a/crates/swc_ecma_ast/Cargo.toml b/crates/swc_ecma_ast/Cargo.toml index bb3aa44fc69..84187fdaa09 100644 --- a/crates/swc_ecma_ast/Cargo.toml +++ b/crates/swc_ecma_ast/Cargo.toml @@ -28,7 +28,7 @@ rkyv = { version = "0.7.37", optional = true } serde = {version = "1.0.133", features = ["derive"]} string_enum = {version = "0.3.1", path = "../string_enum"} swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} unicode-id = "0.3" [dev-dependencies] diff --git a/crates/swc_ecma_codegen/Cargo.toml b/crates/swc_ecma_codegen/Cargo.toml index 531fc1cd5d2..e7e6aa2fda8 100644 --- a/crates/swc_ecma_codegen/Cargo.toml +++ b/crates/swc_ecma_codegen/Cargo.toml @@ -20,14 +20,14 @@ once_cell = "1.10.0" rustc-hash = "1.1.0" sourcemap = "6" swc_atoms = { version = "0.2", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_codegen_macros = { version = "0.7.0", path = "../swc_ecma_codegen_macros" } tracing = "0.1.32" [dev-dependencies] criterion = "0.3" -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "sourcemap", ] } swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" } diff --git a/crates/swc_ecma_dep_graph/Cargo.toml b/crates/swc_ecma_dep_graph/Cargo.toml index 9c14a5b6771..8d912cfe551 100644 --- a/crates/swc_ecma_dep_graph/Cargo.toml +++ b/crates/swc_ecma_dep_graph/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dependencies] swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_visit = {version = "0.62.0", path = "../swc_ecma_visit"} diff --git a/crates/swc_ecma_ext_transforms/Cargo.toml b/crates/swc_ecma_ext_transforms/Cargo.toml index d9942af03f4..39ca8c50abd 100644 --- a/crates/swc_ecma_ext_transforms/Cargo.toml +++ b/crates/swc_ecma_ext_transforms/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dependencies] phf = {version = "0.10", features = ["macros"]} swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.62.0", path = "../swc_ecma_visit"} diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index 495a3de47db..5b0b9cdfef3 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -21,7 +21,7 @@ rayon = "1.5.1" regex = "1" serde = { version = "1.0.133", features = ["derive"] } swc_atoms = { version = "0.2.9", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "concurrent", ] } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } diff --git a/crates/swc_ecma_loader/Cargo.toml b/crates/swc_ecma_loader/Cargo.toml index f17a3b5e5a7..09709264c25 100644 --- a/crates/swc_ecma_loader/Cargo.toml +++ b/crates/swc_ecma_loader/Cargo.toml @@ -35,7 +35,7 @@ path-clean = { version = "=0.1.0", optional = true } serde = { version = "1", features = ["derive"] } serde_json = { version = "1.0.64", optional = true } swc_cached = { version = "0.1.0", optional = true, path = "../swc_cached" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } tracing = "0.1.32" pathdiff = "0.2.1" diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index cfd2fb9c5b9..f79c3cd3c8a 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -35,7 +35,7 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.2", path = "../swc_atoms" } swc_cached = { version = "0.1.0", path = "../swc_cached" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.105.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" } diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index e72d05f2a59..b5f1d6d998c 100644 --- a/crates/swc_ecma_parser/Cargo.toml +++ b/crates/swc_ecma_parser/Cargo.toml @@ -31,7 +31,7 @@ num-bigint = "0.4" serde = { version = "1", features = ["derive"] } smallvec = "1.8.0" swc_atoms = { version = "0.2.3", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit", optional = true } tracing = "0.1.32" diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index a58758ae9f3..31d52848779 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -24,7 +24,7 @@ serde_json = "1" st-map = "0.1.2" string_enum = {version = "0.3.1", path = "../string_enum"} swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_transforms = {version = "0.145.0", path = "../swc_ecma_transforms", features = [ "compat", diff --git a/crates/swc_ecma_quote/Cargo.toml b/crates/swc_ecma_quote/Cargo.toml index 84decf5faf4..8c6e8bc4feb 100644 --- a/crates/swc_ecma_quote/Cargo.toml +++ b/crates/swc_ecma_quote/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dependencies] swc_atoms = {version = "0.2.9", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_quote_macros = {version = "0.12.0", path = "../swc_ecma_quote_macros"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} diff --git a/crates/swc_ecma_quote_macros/Cargo.toml b/crates/swc_ecma_quote_macros/Cargo.toml index 183b7caff5a..833a3e14202 100644 --- a/crates/swc_ecma_quote_macros/Cargo.toml +++ b/crates/swc_ecma_quote_macros/Cargo.toml @@ -18,7 +18,7 @@ pmutil = "0.5.1" proc-macro2 = "1" quote = "1" swc_atoms = {version = "0.2.9", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_macros_common = {version = "0.3.3", path = "../swc_macros_common"} diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 9d2d3e951d7..eea811a51d3 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -28,7 +28,7 @@ typescript = ["swc_ecma_transforms_typescript"] [dependencies] swc_atoms = {version = "0.2.0", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_compat = {version = "0.92.0", path = "../swc_ecma_transforms_compat", optional = true} diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index 6269b0ce9f2..26a80eadba3 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -23,7 +23,7 @@ rayon = {version = "1", optional = true} serde = {version = "1", features = ["derive"]} smallvec = "1.8.0" swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} diff --git a/crates/swc_ecma_transforms_classes/Cargo.toml b/crates/swc_ecma_transforms_classes/Cargo.toml index ee046010aa9..cb37c470469 100644 --- a/crates/swc_ecma_transforms_classes/Cargo.toml +++ b/crates/swc_ecma_transforms_classes/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dependencies] swc_atoms = {version = "0.2.6", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 5fa03862402..f8fbfc16504 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -30,7 +30,7 @@ rayon = { version = "1.5.1", optional = true } serde = { version = "1.0.118", features = ["derive"] } smallvec = "1.8.0" swc_atoms = { version = "0.2.5", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.78.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "0.66.0", path = "../swc_ecma_transforms_classes" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 405434c64fa..da36d2339b4 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -21,7 +21,7 @@ pathdiff = "0.2.0" serde = {version = "1.0.118", features = ["derive"]} swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_cached = {version = "0.1.0", path = "../swc_cached"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader", features = [ "node", diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 8fea3739a08..c7c3db85e7b 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -31,7 +31,7 @@ once_cell = "1.10.0" rayon = { version = "1.5.1", optional = true } serde_json = "1.0.61" swc_atoms = { version = "0.2", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.78.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index cb4462d5a96..a9effaf241a 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -21,7 +21,7 @@ either = "1.6.1" serde = {version = "1.0.118", features = ["derive"]} smallvec = "1.8.0" swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader", optional = true} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index 11313618603..3dc596f1d43 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -23,7 +23,7 @@ serde = {version = "1.0.118", features = ["derive"]} sha-1 = "0.10.0" string_enum = {version = "0.3.1", path = "../string_enum"} swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index a6108c5ede0..8247d8b09d3 100644 --- a/crates/swc_ecma_transforms_testing/Cargo.toml +++ b/crates/swc_ecma_transforms_testing/Cargo.toml @@ -18,7 +18,7 @@ hex = "0.4.3" serde = "1" serde_json = "1" sha-1 = "0.10" -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.105.0", path = "../swc_ecma_codegen"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 37f025b5dcc..9ae8755e968 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -15,7 +15,7 @@ bench = false [dependencies] serde = {version = "1.0.118", features = ["derive"]} swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_react = {version = "0.107.0", path = "../swc_ecma_transforms_react"} diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index 228b6924b97..28777da6f62 100644 --- a/crates/swc_ecma_utils/Cargo.toml +++ b/crates/swc_ecma_utils/Cargo.toml @@ -24,7 +24,7 @@ indexmap = "1" once_cell = "1.10.0" rayon = { version = "1.5.1", optional = true } swc_atoms = { version = "0.2.0", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" } tracing = "0.1.32" diff --git a/crates/swc_ecma_visit/Cargo.toml b/crates/swc_ecma_visit/Cargo.toml index 3d7a0ea3aa8..5470e87b0fc 100644 --- a/crates/swc_ecma_visit/Cargo.toml +++ b/crates/swc_ecma_visit/Cargo.toml @@ -17,7 +17,7 @@ debug = [] [dependencies] num-bigint = {version = "0.4", features = ["serde"]} swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_visit = {version = "0.3.0", path = "../swc_visit"} tracing = "0.1.32" diff --git a/crates/swc_error_reporters/Cargo.toml b/crates/swc_error_reporters/Cargo.toml index 1487dcdecf0..737231bd823 100644 --- a/crates/swc_error_reporters/Cargo.toml +++ b/crates/swc_error_reporters/Cargo.toml @@ -13,6 +13,6 @@ bench = false [dependencies] miette = {version = "4.2.1", features = ["fancy"]} -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "concurrent", ]} diff --git a/crates/swc_estree_ast/Cargo.toml b/crates/swc_estree_ast/Cargo.toml index 180e2e8a5fc..0e636feecf3 100644 --- a/crates/swc_estree_ast/Cargo.toml +++ b/crates/swc_estree_ast/Cargo.toml @@ -22,4 +22,4 @@ better_scoped_tls = {version = "0.1.0", path = "../better_scoped_tls"} serde = {version = "1", features = ["derive"]} serde_json = "1" swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index f45caa2b7b5..e48bcd90498 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -23,7 +23,7 @@ rayon = "1.5.0" serde = {version = "1", features = ["derive"]} serde_json = "1.0.62" swc_atoms = {version = "0.2", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "concurrent", "sourcemap", "tty-emitter", diff --git a/crates/swc_fast_graph/Cargo.toml b/crates/swc_fast_graph/Cargo.toml index 254592966a9..3f68c5f55b8 100644 --- a/crates/swc_fast_graph/Cargo.toml +++ b/crates/swc_fast_graph/Cargo.toml @@ -15,4 +15,4 @@ bench = false ahash = "0.7.6" indexmap = "1.7.0" petgraph = "0.6" -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} diff --git a/crates/swc_html_ast/Cargo.toml b/crates/swc_html_ast/Cargo.toml index f59bedef8bd..e2ecb9c969c 100644 --- a/crates/swc_html_ast/Cargo.toml +++ b/crates/swc_html_ast/Cargo.toml @@ -16,4 +16,4 @@ is-macro = "0.2.0" serde = {version = "1.0.127", features = ["derive"]} string_enum = {version = "0.3.1", path = "../string_enum/"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} diff --git a/crates/swc_html_codegen/Cargo.toml b/crates/swc_html_codegen/Cargo.toml index 2f1a3437210..cdc708aa2f9 100644 --- a/crates/swc_html_codegen/Cargo.toml +++ b/crates/swc_html_codegen/Cargo.toml @@ -16,12 +16,12 @@ bench = false auto_impl = "0.5.0" bitflags = "1.3.2" swc_atoms = {version = "0.2.7", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"} swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros"} [dev-dependencies] -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "sourcemap", ]} swc_html_parser = {version = "0.3.0", path = "../swc_html_parser"} diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index 4e283200b71..d250ea95a5a 100644 --- a/crates/swc_html_parser/Cargo.toml +++ b/crates/swc_html_parser/Cargo.toml @@ -25,7 +25,7 @@ once_cell = "1.10.0" serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.2.7", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common" } +swc_common = { version = "0.17.23", path = "../swc_common" } swc_html_ast = { version = "0.3.0", path = "../swc_html_ast" } [dev-dependencies] diff --git a/crates/swc_html_visit/Cargo.toml b/crates/swc_html_visit/Cargo.toml index 38cf0b3c6c5..911cc79a278 100644 --- a/crates/swc_html_visit/Cargo.toml +++ b/crates/swc_html_visit/Cargo.toml @@ -13,6 +13,6 @@ bench = false [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"} swc_visit = {version = "0.3.0", path = "../swc_visit"} diff --git a/crates/swc_node_comments/Cargo.toml b/crates/swc_node_comments/Cargo.toml index 761b6a87f8b..8c219364cfe 100644 --- a/crates/swc_node_comments/Cargo.toml +++ b/crates/swc_node_comments/Cargo.toml @@ -17,4 +17,4 @@ bench = false [dependencies] ahash = "0.7.6" dashmap = "5.1.0" -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} diff --git a/crates/swc_plugin/Cargo.toml b/crates/swc_plugin/Cargo.toml index ba8407446b9..86181a9661b 100644 --- a/crates/swc_plugin/Cargo.toml +++ b/crates/swc_plugin/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_plugin" repository = "https://github.com/swc-project/swc.git" -version = "0.48.0" +version = "0.48.1" [package.metadata.docs.rs] all-features = true @@ -20,7 +20,7 @@ quote = ["swc_ecma_quote"] [dependencies] swc_atoms = { version = "0.2.0", path = "../swc_atoms" } -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "plugin-mode", ] } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [ @@ -29,7 +29,7 @@ swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [ swc_ecma_quote = { version = "0.13.0", path = "../swc_ecma_quote", optional = true } swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" } swc_ecma_utils = { version = "0.81.0", path = "../swc_ecma_utils" } -swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", features = [ +swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", features = [ "plugin-mode", ] } swc_plugin_macro = { version = "0.4.0", path = "../swc_plugin_macro" } diff --git a/crates/swc_plugin_proxy/Cargo.toml b/crates/swc_plugin_proxy/Cargo.toml index 6e92ee0a34e..d7685e3fdf4 100644 --- a/crates/swc_plugin_proxy/Cargo.toml +++ b/crates/swc_plugin_proxy/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_proxy" repository = "https://github.com/swc-project/swc.git" -version = "0.2.0" +version = "0.2.1" [lib] bench = false @@ -19,6 +19,6 @@ plugin-mode = [] [dependencies] better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" } rkyv = "0.7.37" -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "plugin-base", ] } diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index 8575496003c..c5e9e8f0f75 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_runner" repository = "https://github.com/swc-project/swc.git" -version = "0.53.0" +version = "0.53.1" [lib] bench = false @@ -26,14 +26,14 @@ once_cell = "1.10.0" parking_lot = "0.12.0" serde = { version = "1.0.126", features = ["derive"] } serde_json = "1.0.64" -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "plugin-rt", "concurrent", ] } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [ "rkyv-impl", ] } -swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", features = [ +swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", features = [ "plugin-rt", ] } tracing = "0.1.32" diff --git a/crates/swc_webpack_ast/Cargo.toml b/crates/swc_webpack_ast/Cargo.toml index c292df9b32a..94b6ad3dc7a 100644 --- a/crates/swc_webpack_ast/Cargo.toml +++ b/crates/swc_webpack_ast/Cargo.toml @@ -17,7 +17,7 @@ rayon = "1.5.1" serde = {version = "1", features = ["derive", "rc"]} serde_json = "1.0.72" swc_atoms = {version = "0.2.9", path = "../swc_atoms"} -swc_common = { version = "0.17.20", path = "../swc_common"} +swc_common = { version = "0.17.23", path = "../swc_common"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} diff --git a/crates/testing/Cargo.toml b/crates/testing/Cargo.toml index 4f9e0440b34..865886e9a38 100644 --- a/crates/testing/Cargo.toml +++ b/crates/testing/Cargo.toml @@ -18,7 +18,7 @@ once_cell = "1.10.0" pretty_assertions = "1.1" regex = "1" serde_json = "1.0.71" -swc_common = { version = "0.17.20", path = "../swc_common", features = [ +swc_common = { version = "0.17.23", path = "../swc_common", features = [ "tty-emitter", ]} swc_error_reporters = {version = "0.1.0", path = "../swc_error_reporters"}