mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 14:16:12 +03:00
chore: Publish crates
This commit is contained in:
parent
ba5d272ae1
commit
7d5b544458
@ -73,6 +73,9 @@
|
||||
|
||||
- **(html/ast)** Use `Atom` for `raw` (#6210) ([420ba32](https://github.com/swc-project/swc/commit/420ba32e8c3b4f8ea34e3b17c82af31e2934059b))
|
||||
|
||||
|
||||
- **(html/parser)** Improve performance a bit (#6213) ([ba5d272](https://github.com/swc-project/swc/commit/ba5d272ae111b3da765c842bfd100013833c1eac))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -4045,7 +4045,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html"
|
||||
version = "0.92.3"
|
||||
version = "0.92.4"
|
||||
dependencies = [
|
||||
"swc_html_ast",
|
||||
"swc_html_codegen",
|
||||
@ -4069,7 +4069,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_codegen"
|
||||
version = "0.37.2"
|
||||
version = "0.37.3"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"bitflags",
|
||||
@ -4097,7 +4097,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_minifier"
|
||||
version = "0.89.3"
|
||||
version = "0.89.4"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"once_cell",
|
||||
@ -4127,7 +4127,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_parser"
|
||||
version = "0.34.2"
|
||||
version = "0.34.3"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"serde",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.92.3"
|
||||
version = "0.92.4"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
|
||||
|
||||
[dependencies]
|
||||
swc_html_ast = {version = "0.28.1", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.37.2", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.89.3", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.34.2", path = "../swc_html_parser"}
|
||||
swc_html_codegen = {version = "0.37.3", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.89.4", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.34.3", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.28.1", path = "../swc_html_visit"}
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_codegen"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.37.2"
|
||||
version = "0.37.3"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -29,6 +29,6 @@ swc_html_utils = { version = "0.14.11", path = "../swc_html_utils" }
|
||||
swc_common = { version = "0.29.10", path = "../swc_common", features = [
|
||||
"sourcemap",
|
||||
] }
|
||||
swc_html_parser = { version = "0.34.2", path = "../swc_html_parser" }
|
||||
swc_html_parser = { version = "0.34.3", path = "../swc_html_parser" }
|
||||
swc_html_visit = { version = "0.28.1", path = "../swc_html_visit" }
|
||||
testing = { version = "0.31.10", path = "../testing" }
|
||||
|
@ -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.89.3"
|
||||
version = "0.89.4"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.122.16", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.111.29", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit" }
|
||||
swc_html_ast = { version = "0.28.1", path = "../swc_html_ast" }
|
||||
swc_html_codegen = { version = "0.37.2", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.34.2", path = "../swc_html_parser" }
|
||||
swc_html_codegen = { version = "0.37.3", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.34.3", path = "../swc_html_parser" }
|
||||
swc_html_utils = { version = "0.14.11", path = "../swc_html_utils" }
|
||||
swc_html_visit = { version = "0.28.1", path = "../swc_html_visit" }
|
||||
|
||||
|
@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_html_parser"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.34.2"
|
||||
version = "0.34.3"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user