From 68c8c33d299dd9d61811b45fec21bca4b6f196ae Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Thu, 10 Nov 2022 01:39:43 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 6 ++++++ Cargo.lock | 28 ++++++++++++++-------------- crates/swc_core/Cargo.toml | 20 ++++++++++---------- crates/swc_css/Cargo.toml | 20 ++++++++++---------- crates/swc_css_ast/Cargo.toml | 2 +- crates/swc_css_codegen/Cargo.toml | 10 +++++----- crates/swc_css_compat/Cargo.toml | 12 ++++++------ crates/swc_css_lints/Cargo.toml | 8 ++++---- crates/swc_css_minifier/Cargo.toml | 12 ++++++------ crates/swc_css_modules/Cargo.toml | 12 ++++++------ crates/swc_css_parser/Cargo.toml | 6 +++--- crates/swc_css_prefixer/Cargo.toml | 12 ++++++------ crates/swc_css_utils/Cargo.toml | 6 +++--- crates/swc_css_visit/Cargo.toml | 4 ++-- crates/swc_html/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 10 +++++----- 16 files changed, 89 insertions(+), 83 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e0375cd86a..b918eb0b523 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,6 +64,12 @@ - **(ci)** Fix CI (#6340) ([6094994](https://github.com/swc-project/swc/commit/60949946296c5f999fbbf704281e9e3bc863ce5f)) +### Performance + + + +- **(css)** Reduce size of tokens (#6384) ([bea6cce](https://github.com/swc-project/swc/commit/bea6cce0c6442891e6cfe3df5982c13ea3dda5a3)) + ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 60461267531..da8f740eac7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3162,7 +3162,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.40.57" +version = "0.41.0" dependencies = [ "binding_macros", "once_cell", @@ -3212,7 +3212,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.137.19" +version = "0.138.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3227,7 +3227,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.124.6" +version = "0.125.0" dependencies = [ "bytecheck", "is-macro", @@ -3240,7 +3240,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.134.18" +version = "0.135.0" dependencies = [ "auto_impl", "bitflags", @@ -3269,7 +3269,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.9.18" +version = "0.10.0" dependencies = [ "once_cell", "serde", @@ -3286,7 +3286,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.43.18" +version = "0.44.0" dependencies = [ "auto_impl", "parking_lot", @@ -3305,7 +3305,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.99.19" +version = "0.100.0" dependencies = [ "criterion", "serde", @@ -3322,7 +3322,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.10.18" +version = "0.11.0" dependencies = [ "rustc-hash", "serde", @@ -3339,7 +3339,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.133.18" +version = "0.134.0" dependencies = [ "bitflags", "criterion", @@ -3356,7 +3356,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.135.18" +version = "0.136.0" dependencies = [ "once_cell", "preset_env_base", @@ -3374,7 +3374,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.121.6" +version = "0.122.0" dependencies = [ "once_cell", "serde", @@ -3387,7 +3387,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.123.6" +version = "0.124.0" dependencies = [ "serde", "swc_atoms", @@ -4041,7 +4041,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.93.52" +version = "0.94.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4093,7 +4093,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.90.52" +version = "0.91.0" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 0aa90bdef58..8771fc35f83 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.40.57" +version = "0.41.0" [package.metadata.docs.rs] features = [ "common_perf", @@ -324,14 +324,14 @@ swc_atoms = { optional = true, version = "0.4.24", path = swc_bundler = { optional = true, version = "0.192.73", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.13", path = "../swc_common" } -swc_css_ast = { optional = true, version = "0.124.6", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.134.18", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.99.19", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.10.18", path = "../swc_css_modules" } -swc_css_parser = { optional = true, version = "0.133.18", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.135.18", path = "../swc_css_prefixer" } -swc_css_utils = { optional = true, version = "0.121.6", path = "../swc_css_utils/" } -swc_css_visit = { optional = true, version = "0.123.6", path = "../swc_css_visit" } +swc_css_ast = { optional = true, version = "0.125.0", path = "../swc_css_ast" } +swc_css_codegen = { optional = true, version = "0.135.0", path = "../swc_css_codegen" } +swc_css_minifier = { optional = true, version = "0.100.0", path = "../swc_css_minifier" } +swc_css_modules = { optional = true, version = "0.11.0", path = "../swc_css_modules" } +swc_css_parser = { optional = true, version = "0.134.0", path = "../swc_css_parser" } +swc_css_prefixer = { optional = true, version = "0.136.0", path = "../swc_css_prefixer" } +swc_css_utils = { optional = true, version = "0.122.0", path = "../swc_css_utils/" } +swc_css_visit = { optional = true, version = "0.124.0", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.94.18", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.127.30", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.41.14", path = "../swc_ecma_loader" } @@ -357,7 +357,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.18", path swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.31.13", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.9.18", path = "../swc_css_compat", optional = true } +swc_css_compat = { version = "0.10.0", path = "../swc_css_compat", optional = true } swc_plugin_runner = { optional = true, version = "0.77.30", path = "../swc_plugin_runner", default-features = false } [build-dependencies] diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 436caee28f5..a2c90848e3b 100644 --- a/crates/swc_css/Cargo.toml +++ b/crates/swc_css/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css" repository = "https://github.com/swc-project/swc.git" -version = "0.137.19" +version = "0.138.0" [package.metadata.docs.rs] all-features = true @@ -22,12 +22,12 @@ modules = ["swc_css_modules"] prefixer = ["swc_css_prefixer"] [dependencies] -swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.134.18", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.9.18", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.99.19", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.10.18", path = "../swc_css_modules", optional = true} -swc_css_parser = {version = "0.133.18", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.135.18", path = "../swc_css_prefixer", optional = true} -swc_css_utils = {version = "0.121.6", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"} +swc_css_ast = {version = "0.125.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.135.0", path = "../swc_css_codegen"} +swc_css_compat = {version = "0.10.0", path = "../swc_css_compat", optional = true} +swc_css_minifier = {version = "0.100.0", path = "../swc_css_minifier", optional = true} +swc_css_modules = {version = "0.11.0", path = "../swc_css_modules", optional = true} +swc_css_parser = {version = "0.134.0", path = "../swc_css_parser"} +swc_css_prefixer = {version = "0.136.0", path = "../swc_css_prefixer", optional = true} +swc_css_utils = {version = "0.122.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.124.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 8013bc1541f..b69c143c19e 100644 --- a/crates/swc_css_ast/Cargo.toml +++ b/crates/swc_css_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.124.6" +version = "0.125.0" [lib] bench = false diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 7bb3536153c..8094d3a38b3 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.134.18" +version = "0.135.0" [lib] bench = false @@ -19,14 +19,14 @@ rustc-hash = "1.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.24", path = "../swc_atoms" } swc_common = { version = "0.29.13", path = "../swc_common" } -swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" } +swc_css_ast = { version = "0.125.0", path = "../swc_css_ast" } swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" } -swc_css_utils = { version = "0.121.6", path = "../swc_css_utils" } +swc_css_utils = { version = "0.122.0", path = "../swc_css_utils" } [dev-dependencies] swc_common = { version = "0.29.13", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.133.18", path = "../swc_css_parser" } -swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" } +swc_css_parser = { version = "0.134.0", path = "../swc_css_parser" } +swc_css_visit = { version = "0.124.0", path = "../swc_css_visit" } testing = { version = "0.31.13", path = "../testing" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 5ca7d27ff7c..1a5b68fa71b 100644 --- a/crates/swc_css_compat/Cargo.toml +++ b/crates/swc_css_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.9.18" +version = "0.10.0" [lib] bench = false @@ -18,11 +18,11 @@ serde = {version = "1.0.118", features = ["derive"]} serde_json = "1.0.61" swc_atoms = {version = "0.4.24", path = "../swc_atoms"} swc_common = {version = "0.29.13", path = "../swc_common"} -swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"} -swc_css_utils = {version = "0.121.6", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"} +swc_css_ast = {version = "0.125.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.122.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.124.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.134.18", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.18", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.135.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.134.0", path = "../swc_css_parser"} testing = {version = "0.31.13", path = "../testing"} diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index f59a8841cdf..e068f7c3e08 100644 --- a/crates/swc_css_lints/Cargo.toml +++ b/crates/swc_css_lints/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.43.18" +version = "0.44.0" [lib] bench = false @@ -20,11 +20,11 @@ serde = { version = "1.0.133", features = ["derive"] } swc_atoms = { version = "0.4.24", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.13", path = "../swc_common" } -swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" } -swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" } +swc_css_ast = { version = "0.125.0", path = "../swc_css_ast" } +swc_css_visit = { version = "0.124.0", path = "../swc_css_visit" } thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.133.18", path = "../swc_css_parser" } +swc_css_parser = { version = "0.134.0", path = "../swc_css_parser" } testing = { version = "0.31.13", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index fb09bc507f9..7bbd180d23f 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.99.19" +version = "0.100.0" [lib] bench = false @@ -16,14 +16,14 @@ bench = false serde = "1.0.118" swc_atoms = { version = "0.4.24", path = "../swc_atoms" } swc_common = { version = "0.29.13", path = "../swc_common" } -swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" } -swc_css_utils = { version = "0.121.6", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" } +swc_css_ast = { version = "0.125.0", path = "../swc_css_ast" } +swc_css_utils = { version = "0.122.0", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.124.0", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" -swc_css_codegen = { version = "0.134.18", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.133.18", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.135.0", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.134.0", path = "../swc_css_parser" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.13", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 8585d21646a..60d1ff9257c 100644 --- a/crates/swc_css_modules/Cargo.toml +++ b/crates/swc_css_modules/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_modules" repository = "https://github.com/swc-project/swc.git" -version = "0.10.18" +version = "0.11.0" [lib] bench = false @@ -19,12 +19,12 @@ rustc-hash = "1.1.0" serde = {version = "1", features = ["derive"]} swc_atoms = {version = "0.4.24", path = "../swc_atoms"} swc_common = {version = "0.29.13", path = "../swc_common"} -swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.134.18", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.18", path = "../swc_css_parser"} -swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"} +swc_css_ast = {version = "0.125.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.135.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.134.0", path = "../swc_css_parser"} +swc_css_visit = {version = "0.124.0", path = "../swc_css_visit"} [dev-dependencies] serde_json = "1" -swc_css_compat = {version = "0.9.18", path = "../swc_css_compat"} +swc_css_compat = {version = "0.10.0", path = "../swc_css_compat"} testing = {version = "0.31.13", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index edf45a92610..2f48911f2a1 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.133.18" +version = "0.134.0" [lib] bench = false @@ -21,12 +21,12 @@ lexical = "6.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.24", path = "../swc_atoms" } swc_common = { version = "0.29.13", path = "../swc_common" } -swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" } +swc_css_ast = { version = "0.125.0", path = "../swc_css_ast" } [dev-dependencies] criterion = "0.3" serde_json = "1.0.66" -swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" } +swc_css_visit = { version = "0.124.0", path = "../swc_css_visit" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.13", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 47b93cdce25..0278af355a3 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_prefixer" repository = "https://github.com/swc-project/swc.git" -version = "0.135.18" +version = "0.136.0" [lib] bench = false @@ -19,11 +19,11 @@ serde = {version = "1.0.118", features = ["derive"]} serde_json = "1.0.61" swc_atoms = {version = "0.4.24", path = "../swc_atoms"} swc_common = {version = "0.29.13", path = "../swc_common"} -swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"} -swc_css_utils = {version = "0.121.6", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"} +swc_css_ast = {version = "0.125.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.122.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.124.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.134.18", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.18", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.135.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.134.0", path = "../swc_css_parser"} testing = {version = "0.31.13", path = "../testing"} diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index 972ed7965e5..9f0f3038796 100644 --- a/crates/swc_css_utils/Cargo.toml +++ b/crates/swc_css_utils/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"] license = "Apache-2.0" name = "swc_css_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.121.6" +version = "0.122.0" [lib] bench = false @@ -18,5 +18,5 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.4.24", path = "../swc_atoms" } swc_common = { version = "0.29.13", path = "../swc_common" } -swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" } -swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" } +swc_css_ast = { version = "0.125.0", path = "../swc_css_ast" } +swc_css_visit = { version = "0.124.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 11081676874..799abea380c 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.123.6" +version = "0.124.0" [package.metadata.docs.rs] all-features = true @@ -23,5 +23,5 @@ path = [] serde = { version = "1", optional = true } swc_atoms = { version = "0.4.24", path = "../swc_atoms" } swc_common = { version = "0.29.13", path = "../swc_common" } -swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" } +swc_css_ast = { version = "0.125.0", path = "../swc_css_ast" } swc_visit = { version = "0.5.3", path = "../swc_visit" } diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index d4e9b8ef944..52a5ebbee60 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.93.52" +version = "0.94.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.4", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.10", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.90.52", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.91.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.10", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.4", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 0bf9a0a5f55..53911e5b386 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.90.52" +version = "0.91.0" [lib] bench = false @@ -22,10 +22,10 @@ serde_json = "1.0.61" swc_atoms = { version = "0.4.24", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.13", path = "../swc_common" } -swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.134.18", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.99.19", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.133.18", path = "../swc_css_parser" } +swc_css_ast = { version = "0.125.0", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.135.0", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.100.0", path = "../swc_css_minifier" } +swc_css_parser = { version = "0.134.0", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.94.18", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.30", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.159.73", path = "../swc_ecma_minifier" }