chore: Publish crates

This commit is contained in:
Donny 2021-11-18 14:18:11 +09:00
parent c50cec1533
commit ee12362688
8 changed files with 36 additions and 36 deletions

22
Cargo.lock generated
View File

@ -832,9 +832,9 @@ checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
[[package]]
name = "httpdate"
version = "1.0.1"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "humantime"
@ -2197,9 +2197,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.70"
version = "1.0.71"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e277c495ac6cd1a01a58d0a0c574568b4d1ddf14f59965c6a58b8d96400b54f3"
checksum = "063bf466a64011ac24040a49009724ee60a57da1b437617ceb32e53ad61bfb19"
dependencies = [
"itoa",
"ryu",
@ -2567,7 +2567,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.34.0"
version = "0.35.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -2578,7 +2578,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.32.0"
version = "0.33.0"
dependencies = [
"is-macro",
"serde",
@ -2589,7 +2589,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.32.0"
version = "0.33.0"
dependencies = [
"auto_impl 0.4.1",
"bitflags",
@ -2615,7 +2615,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.34.0"
version = "0.35.0"
dependencies = [
"bitflags",
"lexical",
@ -2631,7 +2631,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.29.0"
version = "0.30.0"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",
@ -2641,7 +2641,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.31.0"
version = "0.32.0"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",
@ -3265,7 +3265,7 @@ dependencies = [
[[package]]
name = "swc_stylis"
version = "0.31.0"
version = "0.32.0"
dependencies = [
"swc_atoms 0.2.9",
"swc_common",

View File

@ -6,11 +6,11 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.34.0"
version = "0.35.0"
[dependencies]
swc_css_ast = {version = "0.32.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.32.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.34.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.29.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.31.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.33.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.33.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.35.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.30.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.32.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.32.0"
version = "0.33.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.32.0"
version = "0.33.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.32.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.33.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.34.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.31.0", path = "../swc_css_visit"}
swc_css_parser = {version = "0.35.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.32.0", path = "../swc_css_visit"}
testing = {version = "0.15.0", 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.34.0"
version = "0.35.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.32.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.33.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.31.0", path = "../swc_css_visit"}
swc_css_visit = {version = "0.32.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.29.0"
version = "0.30.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.32.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.31.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.33.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.32.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.31.0"
version = "0.32.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.32.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.33.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.31.0"
version = "0.32.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.32.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.29.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.31.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.33.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.30.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.32.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.32.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.34.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.33.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.35.0", path = "../swc_css_parser"}
testing = {version = "0.15.0", path = "../testing"}