mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
chore: Publish crates
This commit is contained in:
parent
5645e810df
commit
473f5c4111
@ -49,6 +49,9 @@
|
||||
|
||||
- **(html)** Reduce memory usage (#5867) ([7f62fa6](https://github.com/swc-project/swc/commit/7f62fa62277621bc0787eca1e5e0df9dd575b5cd))
|
||||
|
||||
|
||||
- **(html/parser)** Improve performance (#5884) ([5645e81](https://github.com/swc-project/swc/commit/5645e810df36e7954dc1249634e1a92e34f8172c))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -3949,7 +3949,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html"
|
||||
version = "0.74.6"
|
||||
version = "0.74.7"
|
||||
dependencies = [
|
||||
"swc_html_ast",
|
||||
"swc_html_codegen",
|
||||
@ -3973,7 +3973,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_codegen"
|
||||
version = "0.34.4"
|
||||
version = "0.34.5"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"bitflags",
|
||||
@ -4001,7 +4001,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_minifier"
|
||||
version = "0.71.6"
|
||||
version = "0.71.7"
|
||||
dependencies = [
|
||||
"criterion",
|
||||
"once_cell",
|
||||
@ -4031,7 +4031,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_html_parser"
|
||||
version = "0.31.4"
|
||||
version = "0.31.5"
|
||||
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.74.6"
|
||||
version = "0.74.7"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
|
||||
|
||||
[dependencies]
|
||||
swc_html_ast = {version = "0.25.8", path = "../swc_html_ast"}
|
||||
swc_html_codegen = {version = "0.34.4", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.71.6", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.31.4", path = "../swc_html_parser"}
|
||||
swc_html_codegen = {version = "0.34.5", path = "../swc_html_codegen"}
|
||||
swc_html_minifier = {version = "0.71.7", path = "../swc_html_minifier", optional = true}
|
||||
swc_html_parser = {version = "0.31.5", path = "../swc_html_parser"}
|
||||
swc_html_visit = {version = "0.25.8", 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.34.4"
|
||||
version = "0.34.5"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -29,6 +29,6 @@ swc_html_utils = { version = "0.13.8", path = "../swc_html_utils" }
|
||||
swc_common = { version = "0.28.8", path = "../swc_common", features = [
|
||||
"sourcemap",
|
||||
] }
|
||||
swc_html_parser = { version = "0.31.4", path = "../swc_html_parser" }
|
||||
swc_html_parser = { version = "0.31.5", path = "../swc_html_parser" }
|
||||
swc_html_visit = { version = "0.25.8", path = "../swc_html_visit" }
|
||||
testing = { version = "0.30.8", 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.71.6"
|
||||
version = "0.71.7"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.119.12", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.108.17", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_visit = { version = "0.77.8", path = "../swc_ecma_visit" }
|
||||
swc_html_ast = { version = "0.25.8", path = "../swc_html_ast" }
|
||||
swc_html_codegen = { version = "0.34.4", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.31.4", path = "../swc_html_parser" }
|
||||
swc_html_codegen = { version = "0.34.5", path = "../swc_html_codegen" }
|
||||
swc_html_parser = { version = "0.31.5", path = "../swc_html_parser" }
|
||||
swc_html_utils = { version = "0.13.8", path = "../swc_html_utils" }
|
||||
swc_html_visit = { version = "0.25.8", 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.31.4"
|
||||
version = "0.31.5"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user