From 75376cd65cf10e9777aab5e00abf9f851a222a49 Mon Sep 17 00:00:00 2001 From: OJ Kwon <1210596+kwonoj@users.noreply.github.com> Date: Thu, 9 Feb 2023 18:27:20 -0800 Subject: [PATCH] chore: Bump swc_css_* (#6924) --- Cargo.lock | 4 +-- crates/swc_core/Cargo.toml | 4 +-- crates/swc_css/Cargo.toml | 42 ++++++++++++++--------------- crates/swc_css_codegen/Cargo.toml | 2 +- crates/swc_css_compat/Cargo.toml | 40 +++++++++++++-------------- crates/swc_css_lints/Cargo.toml | 2 +- crates/swc_css_minifier/Cargo.toml | 2 +- crates/swc_css_modules/Cargo.toml | 38 +++++++++++++------------- crates/swc_css_parser/Cargo.toml | 4 +-- crates/swc_css_prefixer/Cargo.toml | 40 +++++++++++++-------------- crates/swc_html_minifier/Cargo.toml | 2 +- crates/swc_plugin_runner/Cargo.toml | 2 +- 12 files changed, 91 insertions(+), 91 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c4c89ddc4bfb..cc1194c5015c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.59.23" +version = "0.59.24" dependencies = [ "anyhow", "binding_macros", @@ -3481,7 +3481,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.143.2" +version = "0.143.3" dependencies = [ "bitflags", "criterion", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 6fee82cf8895..8f857793563a 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.59.23" +version = "0.59.24" [package.metadata.docs.rs] features = [ "common_perf", @@ -350,7 +350,7 @@ swc_css_ast = { optional = true, version = "0.134.2", path swc_css_codegen = { optional = true, version = "0.144.2", path = "../swc_css_codegen" } swc_css_minifier = { optional = true, version = "0.109.2", path = "../swc_css_minifier" } swc_css_modules = { optional = true, version = "0.21.3", path = "../swc_css_modules" } -swc_css_parser = { optional = true, version = "0.143.2", path = "../swc_css_parser" } +swc_css_parser = { optional = true, version = "0.143.3", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.146.2", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.131.2", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.133.2", path = "../swc_css_visit" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 57ed3730ad10..bf4d82ac815f 100644 --- a/crates/swc_css/Cargo.toml +++ b/crates/swc_css/Cargo.toml @@ -1,33 +1,33 @@ [package] -authors = ["강동윤 "] -description = "CSS apis for rust" +authors = ["강동윤 "] +description = "CSS apis for rust" documentation = "https://rustdoc.swc.rs/swc_css/" -edition = "2021" -license = "Apache-2.0" -name = "swc_css" -repository = "https://github.com/swc-project/swc.git" -version = "0.149.3" +edition = "2021" +license = "Apache-2.0" +name = "swc_css" +repository = "https://github.com/swc-project/swc.git" +version = "0.149.3" -[package.metadata.docs.rs] -all-features = true -rustdoc-args = ["--cfg", "docsrs"] + [package.metadata.docs.rs] + all-features = true + rustdoc-args = ["--cfg", "docsrs"] [lib] bench = false [features] -compat = ["swc_css_compat"] +compat = ["swc_css_compat"] minifier = ["swc_css_minifier"] -modules = ["swc_css_modules"] +modules = ["swc_css_modules"] prefixer = ["swc_css_prefixer"] [dependencies] -swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.20.2", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.109.2", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.21.3", path = "../swc_css_modules", optional = true} -swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.146.2", path = "../swc_css_prefixer", optional = true} -swc_css_utils = {version = "0.131.2", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"} +swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" } +swc_css_compat = { version = "0.20.2", path = "../swc_css_compat", optional = true } +swc_css_minifier = { version = "0.109.2", path = "../swc_css_minifier", optional = true } +swc_css_modules = { version = "0.21.3", path = "../swc_css_modules", optional = true } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } +swc_css_prefixer = { version = "0.146.2", path = "../swc_css_prefixer", optional = true } +swc_css_utils = { version = "0.131.2", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" } diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 50eba6d561b7..c9b0fb3dad30 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -27,6 +27,6 @@ swc_css_utils = { version = "0.131.2", path = "../swc_css_utils" } swc_common = { version = "0.29.29", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" } testing = { version = "0.31.31", path = "../testing" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 0aab4ec6962b..31e76d947a2f 100644 --- a/crates/swc_css_compat/Cargo.toml +++ b/crates/swc_css_compat/Cargo.toml @@ -1,29 +1,29 @@ [package] -authors = ["강동윤 "] -description = "Port of stylis" +authors = ["강동윤 "] +description = "Port of stylis" documentation = "https://rustdoc.swc.rs/swc_css_compat/" -edition = "2021" -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.20.2" +edition = "2021" +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.20.2" [lib] bench = false [dependencies] -bitflags = "1.3.2" -once_cell = "1.10.0" -serde = {version = "1.0.118", features = ["derive"]} -serde_json = "1.0.61" -swc_atoms = {version = "0.4.32", path = "../swc_atoms"} -swc_common = {version = "0.29.29", path = "../swc_common"} -swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"} -swc_css_utils = {version = "0.131.2", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"} +bitflags = "1.3.2" +once_cell = "1.10.0" +serde = { version = "1.0.118", features = ["derive"] } +serde_json = "1.0.61" +swc_atoms = { version = "0.4.32", path = "../swc_atoms" } +swc_common = { version = "0.29.29", path = "../swc_common" } +swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" } +swc_css_utils = { version = "0.131.2", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"} -testing = {version = "0.31.31", path = "../testing"} +swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } +testing = { version = "0.31.31", path = "../testing" } diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index 0a48e1cb6406..a48023b7a7ed 100644 --- a/crates/swc_css_lints/Cargo.toml +++ b/crates/swc_css_lints/Cargo.toml @@ -26,5 +26,5 @@ thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } testing = { version = "0.31.31", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 5994522572bc..48a54e5d5f4e 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -23,7 +23,7 @@ swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.31", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index bf93ae3e729f..d3c2d1dda4c3 100644 --- a/crates/swc_css_modules/Cargo.toml +++ b/crates/swc_css_modules/Cargo.toml @@ -1,13 +1,13 @@ [package] -authors = ["강동윤 "] -description = "CSS modules" +authors = ["강동윤 "] +description = "CSS modules" documentation = "https://rustdoc.swc.rs/swc_css_modules/" -edition = "2021" -include = ["Cargo.toml", "src/**/*.rs"] -license = "Apache-2.0" -name = "swc_css_modules" -repository = "https://github.com/swc-project/swc.git" -version = "0.21.3" +edition = "2021" +include = ["Cargo.toml", "src/**/*.rs"] +license = "Apache-2.0" +name = "swc_css_modules" +repository = "https://github.com/swc-project/swc.git" +version = "0.21.3" [lib] bench = false @@ -15,16 +15,16 @@ bench = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rustc-hash = "1.1.0" -serde = {version = "1", features = ["derive"]} -swc_atoms = {version = "0.4.32", path = "../swc_atoms"} -swc_common = {version = "0.29.29", path = "../swc_common"} -swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"} -swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"} +rustc-hash = "1.1.0" +serde = { version = "1", features = ["derive"] } +swc_atoms = { version = "0.4.32", path = "../swc_atoms" } +swc_common = { version = "0.29.29", path = "../swc_common" } +swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } +swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" } [dev-dependencies] -serde_json = "1" -swc_css_compat = {version = "0.20.2", path = "../swc_css_compat"} -testing = {version = "0.31.31", path = "../testing"} +serde_json = "1" +swc_css_compat = { version = "0.20.2", path = "../swc_css_compat" } +testing = { version = "0.31.31", path = "../testing" } diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 159c1b4c9b9e..96bb5e4fc387 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.143.2" +version = "0.143.3" [lib] bench = false @@ -19,7 +19,7 @@ debug = [] bitflags = "1.2.1" lexical = "6.1.0" serde = "1.0.127" -swc_atoms = { version = "0.4.32", path = "../swc_atoms" } +swc_atoms = { version = "0.4.34", path = "../swc_atoms" } swc_common = { version = "0.29.29", path = "../swc_common" } swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index d2ffcafc8a60..63afcc174530 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -1,29 +1,29 @@ [package] -authors = ["강동윤 "] -description = "Port of stylis" +authors = ["강동윤 "] +description = "Port of stylis" documentation = "https://rustdoc.swc.rs/swc_stylis/" -edition = "2021" -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.146.2" +edition = "2021" +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.146.2" [lib] bench = false [dependencies] -once_cell = "1.10.0" -preset_env_base = {version = "0.4.0", path = "../preset_env_base"} -serde = {version = "1.0.118", features = ["derive"]} -serde_json = "1.0.61" -swc_atoms = {version = "0.4.32", path = "../swc_atoms"} -swc_common = {version = "0.29.29", path = "../swc_common"} -swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"} -swc_css_utils = {version = "0.131.2", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"} +once_cell = "1.10.0" +preset_env_base = { version = "0.4.0", path = "../preset_env_base" } +serde = { version = "1.0.118", features = ["derive"] } +serde_json = "1.0.61" +swc_atoms = { version = "0.4.32", path = "../swc_atoms" } +swc_common = { version = "0.29.29", path = "../swc_common" } +swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" } +swc_css_utils = { version = "0.131.2", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"} -testing = {version = "0.31.31", path = "../testing"} +swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } +testing = { version = "0.31.31", path = "../testing" } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index f7969711d8bb..a5878503a2e8 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -25,7 +25,7 @@ swc_common = { version = "0.29.29", path = "../swc_common" } swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" } swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" } swc_css_minifier = { version = "0.109.2", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.96.3", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.129.10", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.166.18", path = "../swc_ecma_minifier" } diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index 7e396e81da34..1f0f49790e46 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -63,7 +63,7 @@ swc_atoms = { version = "0.4.32", path = '../swc_atoms' } swc_css_ast = { version = "0.134.2", path = "../swc_css_ast", features = [ "rkyv-impl", ] } -swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" } +swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.96.3", path = "../swc_ecma_ast", features = [ "rkyv-impl", ] }