chore: Publish crates

This commit is contained in:
Donny 2021-11-30 11:25:38 +09:00
parent fcd0d7a6cb
commit 57fb69262d
9 changed files with 40 additions and 40 deletions

16
Cargo.lock generated
View File

@ -2572,7 +2572,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.40.0"
version = "0.41.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -2584,7 +2584,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"is-macro",
"serde",
@ -2595,7 +2595,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"auto_impl 0.4.1",
"bitflags",
@ -2621,7 +2621,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",
@ -2635,7 +2635,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.40.1"
version = "0.41.0"
dependencies = [
"bitflags",
"lexical",
@ -2651,7 +2651,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.33.0"
version = "0.34.0"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",
@ -2661,7 +2661,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.35.0"
version = "0.36.0"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",
@ -3343,7 +3343,7 @@ dependencies = [
[[package]]
name = "swc_stylis"
version = "0.37.0"
version = "0.38.0"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.40.0"
version = "0.41.0"
[package.metadata.docs.rs]
all-features = true
@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"]
minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.36.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.38.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.2.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.40.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.33.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.35.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.37.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.39.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.3.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.41.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.34.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.36.0", path = "../swc_css_visit"}

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.36.0"
version = "0.37.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -6,17 +6,17 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.38.0"
version = "0.39.0"
[dependencies]
auto_impl = "0.4.1"
bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.14.0", path = "../swc_common"}
swc_css_ast = {version = "0.36.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.37.0", path = "../swc_css_ast"}
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
[dev-dependencies]
swc_css_parser = {version = "0.40.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.35.0", path = "../swc_css_visit"}
swc_css_parser = {version = "0.41.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.36.0", path = "../swc_css_visit"}
testing = {version = "0.15.0", path = "../testing"}

View File

@ -6,18 +6,18 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.0"
version = "0.3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = {version = "0.14.6", path = "../swc_common"}
swc_css_ast = {version = "0.36.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.33.0", path = "../swc_css_utils"}
swc_css_visit = {version = "0.35.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.37.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.34.0", path = "../swc_css_utils"}
swc_css_visit = {version = "0.36.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.38.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.40.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.39.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.41.0", path = "../swc_css_parser"}
testing = {version = "0.15.2", path = "../testing"}

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.40.1"
version = "0.41.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
@ -17,11 +17,11 @@ bitflags = "1.2.1"
lexical = "5.2.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.14.0", path = "../swc_common"}
swc_css_ast = {version = "0.36.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.37.0", path = "../swc_css_ast"}
unicode-xid = "0.2.2"
[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_css_visit = {version = "0.35.0", path = "../swc_css_visit"}
swc_css_visit = {version = "0.36.0", path = "../swc_css_visit"}
testing = {version = "0.15.0", path = "../testing"}

View File

@ -6,11 +6,11 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_css_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.33.0"
version = "0.34.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.14.0", path = "../swc_common"}
swc_css_ast = {version = "0.36.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.35.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.37.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.36.0", path = "../swc_css_visit"}

View File

@ -6,12 +6,12 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_css_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.35.0"
version = "0.36.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.14.0", path = "../swc_common"}
swc_css_ast = {version = "0.36.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.37.0", path = "../swc_css_ast"}
swc_visit = {version = "0.2.6", path = "../swc_visit"}

View File

@ -6,18 +6,18 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_stylis"
repository = "https://github.com/swc-project/swc.git"
version = "0.37.0"
version = "0.38.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.14.0", path = "../swc_common"}
swc_css_ast = {version = "0.36.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.33.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.35.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.37.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.34.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.36.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.38.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.40.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.39.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.41.0", path = "../swc_css_parser"}
testing = {version = "0.15.0", path = "../testing"}