chore: Publish crates

This commit is contained in:
Donny 2021-12-08 19:54:05 +09:00
parent 4cf58528df
commit 8ea40a3707
4 changed files with 11 additions and 11 deletions

10
Cargo.lock generated
View File

@ -590,9 +590,9 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "encoding_rs"
version = "0.8.29"
version = "0.8.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746"
checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
dependencies = [
"cfg-if 1.0.0",
]
@ -3172,7 +3172,7 @@ dependencies = [
[[package]]
name = "swc_estree_ast"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"scoped-tls",
"serde",
@ -3183,7 +3183,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.12.0"
version = "0.13.0"
dependencies = [
"ahash",
"anyhow",
@ -3398,7 +3398,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.10.0"
version = "0.11.0"
dependencies = [
"anyhow",
"rayon",

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_estree_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.0"
version = "0.5.0"
[package.metadata.docs.rs]
all-features = true

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.12.0"
version = "0.13.0"
[package.metadata.docs.rs]
all-features = true
@ -24,7 +24,7 @@ swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"}
swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.4.0", path = "../swc_estree_ast"}
swc_estree_ast = {version = "0.5.0", path = "../swc_estree_ast"}
swc_node_comments = {version = "0.2.0", path = "../swc_node_comments/"}
[dev-dependencies]

View File

@ -5,7 +5,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_webpack_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.10.0"
version = "0.11.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -20,8 +20,8 @@ swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"}
swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.4.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.12.0", path = "../swc_estree_compat"}
swc_estree_ast = {version = "0.5.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.13.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.2.0", path = "../swc_timer"}
tracing = "0.1.29"