chore(swc_core): Update deps (#5748)

This commit is contained in:
OJ Kwon 2022-09-04 20:46:07 -07:00 committed by GitHub
parent 702e20168f
commit 1202762f30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 23 additions and 23 deletions

10
Cargo.lock generated
View File

@ -2923,7 +2923,7 @@ dependencies = [
[[package]] [[package]]
name = "swc" name = "swc"
version = "0.224.1" version = "0.224.2"
dependencies = [ dependencies = [
"ahash", "ahash",
"ansi_term", "ansi_term",
@ -2993,7 +2993,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_bundler" name = "swc_bundler"
version = "0.185.0" version = "0.185.1"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -3109,7 +3109,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.20.6" version = "0.20.7"
dependencies = [ dependencies = [
"binding_macros", "binding_macros",
"once_cell", "once_cell",
@ -3422,7 +3422,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_minifier" name = "swc_ecma_minifier"
version = "0.152.5" version = "0.152.6"
dependencies = [ dependencies = [
"ahash", "ahash",
"ansi_term", "ansi_term",
@ -3557,7 +3557,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms" name = "swc_ecma_transforms"
version = "0.191.0" version = "0.191.1"
dependencies = [ dependencies = [
"pretty_assertions", "pretty_assertions",
"sourcemap", "sourcemap",

View File

@ -33,7 +33,7 @@ binding_wasm = [
swc = { optional = true, version = "0.224.0", path = "../swc" } swc = { optional = true, version = "0.224.0", path = "../swc" }
swc_common = { optional = true, version = "0.27.13", path = "../swc_common" } swc_common = { optional = true, version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.90.15", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.191.0", path = "../swc_ecma_transforms" } swc_ecma_transforms = { optional = true, version = "0.191.1", path = "../swc_ecma_transforms" }
# Optional deps for the wasm binding macro # Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.58" } anyhow = { optional = true, version = "1.0.58" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc" name = "swc"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.224.1" version = "0.224.2"
[lib] [lib]
bench = false bench = false
@ -74,7 +74,7 @@ swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader", features =
swc_ecma_minifier = { version = "0.152.4", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.152.4", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.167.0", path = "../swc_ecma_preset_env" } swc_ecma_preset_env = { version = "0.167.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.191.0", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = { version = "0.191.1", path = "../swc_ecma_transforms", features = [
"compat", "compat",
"module", "module",
"optimization", "optimization",
@ -84,7 +84,7 @@ swc_ecma_transforms = { version = "0.191.0", path = "../swc_ecma_transforms", fe
] } ] }
swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.129.0", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_compat = { version = "0.129.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.160.4", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_optimization = { version = "0.160.6", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.11.4", path = "../swc_error_reporters" } swc_error_reporters = { version = "0.11.4", path = "../swc_error_reporters" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_bundler" name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.185.0" version = "0.185.1"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_co
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" } swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.160.0", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_optimization = { version = "0.160.6", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.15.4", path = "../swc_fast_graph/" } swc_fast_graph = { version = "0.15.4", path = "../swc_fast_graph/" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_core" name = "swc_core"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.20.6" version = "0.20.7"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -284,9 +284,9 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies # swc_* dependencies
binding_macros = { optional = true, version = "0.12.0", path = "../binding_macros" } binding_macros = { optional = true, version = "0.12.0", path = "../binding_macros" }
swc = { optional = true, version = "0.224.1", path = "../swc" } swc = { optional = true, version = "0.224.2", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.10", path = "../swc_atoms" } swc_atoms = { optional = true, version = "0.4.10", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.185.0", path = "../swc_bundler" } swc_bundler = { optional = true, version = "0.185.1", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.5", path = "../swc_cached" } swc_cached = { optional = true, version = "0.3.5", path = "../swc_cached" }
swc_common = { optional = true, version = "0.27.12", path = "../swc_common" } swc_common = { optional = true, version = "0.27.12", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.110.0", path = "../swc_css_ast" } swc_css_ast = { optional = true, version = "0.110.0", path = "../swc_css_ast" }
@ -299,7 +299,7 @@ swc_css_visit = { optional = true, version = "0.109.0", path
swc_ecma_ast = { optional = true, version = "0.90.10", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.90.10", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.123.0", path = "../swc_ecma_codegen" } swc_ecma_codegen = { optional = true, version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.39.4", path = "../swc_ecma_loader" } swc_ecma_loader = { optional = true, version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.152.4", path = "../swc_ecma_minifier" } swc_ecma_minifier = { optional = true, version = "0.152.6", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.118.0", path = "../swc_ecma_parser" } swc_ecma_parser = { optional = true, version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_quote_macros = { optional = true, version = "0.29.1", path = "../swc_ecma_quote_macros" } swc_ecma_quote_macros = { optional = true, version = "0.29.1", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.106.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { optional = true, version = "0.106.0", path = "../swc_ecma_transforms_base" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_minifier" name = "swc_ecma_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.152.5" version = "0.152.6"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -52,7 +52,7 @@ swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_as
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.160.4", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_optimization = { version = "0.160.6", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_timer = { version = "0.15.4", path = "../swc_timer" } swc_timer = { version = "0.15.4", path = "../swc_timer" }

View File

@ -26,7 +26,7 @@ string_enum = { version = "0.3.1", path = "../string_enum" }
swc_atoms = { version = "0.4.10", path = "../swc_atoms" } swc_atoms = { version = "0.4.10", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" } swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.191.0", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = { version = "0.191.1", path = "../swc_ecma_transforms", features = [
"compat", "compat",
"proposal", "proposal",
] } ] }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms" name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.191.0" version = "0.191.1"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -37,7 +37,7 @@ swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_as
swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.106.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.129.0", path = "../swc_ecma_transforms_compat", optional = true } swc_ecma_transforms_compat = { version = "0.129.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.146.0", path = "../swc_ecma_transforms_module", optional = true } swc_ecma_transforms_module = { version = "0.146.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.160.0", path = "../swc_ecma_transforms_optimization", optional = true } swc_ecma_transforms_optimization = { version = "0.160.6", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.137.0", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_proposal = { version = "0.137.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.148.0", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_react = { version = "0.148.0", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.152.0", path = "../swc_ecma_transforms_typescript", optional = true } swc_ecma_transforms_typescript = { version = "0.152.0", path = "../swc_ecma_transforms_typescript", optional = true }

View File

@ -46,7 +46,7 @@ swc_ecma_minifier = { version = "0.152.0", path = "../swc_ecma_minifier", opti
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.167.0", path = "../swc_ecma_preset_env", optional = true } swc_ecma_preset_env = { version = "0.167.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.34.0", path = "../swc_ecma_quote", optional = true } swc_ecma_quote = { version = "0.34.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.191.0", path = "../swc_ecma_transforms", optional = true } swc_ecma_transforms = { version = "0.191.1", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils", optional = true } swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils", optional = true }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit", optional = true } swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit", optional = true }

View File

@ -41,7 +41,7 @@ pretty_assertions = "1.1"
swc = { version = "0.224.0", path = "../swc" } swc = { version = "0.224.0", path = "../swc" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.191.0", path = "../swc_ecma_transforms/" } swc_ecma_transforms = { version = "0.191.1", path = "../swc_ecma_transforms/" }
testing = { version = "0.29.4", path = "../testing" } testing = { version = "0.29.4", path = "../testing" }
walkdir = "2" walkdir = "2"

View File

@ -38,7 +38,7 @@ swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" } swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.191.0", path = "../swc_ecma_transforms" } swc_ecma_transforms = { version = "0.191.1", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.101.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_node_base = { version = "0.5.5", path = "../swc_node_base" } swc_node_base = { version = "0.5.5", path = "../swc_node_base" }