chore(swc_core): Update dependency version (#5595)

This commit is contained in:
OJ Kwon 2022-08-22 18:10:30 -07:00 committed by GitHub
parent aba5adc349
commit 1769191f9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
60 changed files with 108 additions and 108 deletions

24
Cargo.lock generated
View File

@ -168,7 +168,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.6.0"
version = "0.6.1"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -2947,7 +2947,7 @@ dependencies = [
[[package]]
name = "swc_bundler"
version = "0.179.0"
version = "0.179.1"
dependencies = [
"ahash",
"anyhow",
@ -3005,7 +3005,7 @@ dependencies = [
[[package]]
name = "swc_common"
version = "0.27.12"
version = "0.27.13"
dependencies = [
"ahash",
"anyhow",
@ -3063,7 +3063,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.11.1"
version = "0.11.2"
dependencies = [
"binding_macros",
"once_cell",
@ -3107,7 +3107,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.108.0"
version = "0.108.1"
dependencies = [
"bytecheck",
"is-macro",
@ -3120,7 +3120,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.118.0"
version = "0.118.1"
dependencies = [
"auto_impl",
"bitflags",
@ -3148,7 +3148,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.27.0"
version = "0.27.1"
dependencies = [
"auto_impl",
"parking_lot",
@ -3167,7 +3167,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.83.0"
version = "0.83.1"
dependencies = [
"serde",
"swc_atoms",
@ -3182,7 +3182,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.117.0"
version = "0.117.1"
dependencies = [
"bitflags",
"criterion",
@ -3199,7 +3199,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.119.0"
version = "0.119.1"
dependencies = [
"once_cell",
"preset_env_base",
@ -3217,7 +3217,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.105.0"
version = "0.105.1"
dependencies = [
"once_cell",
"serde",
@ -4097,7 +4097,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.73.0"
version = "0.73.1"
dependencies = [
"anyhow",
"criterion",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.6.0"
version = "0.6.1"
[lib]
bench = false
@ -31,7 +31,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.218.0", path = "../swc" }
swc_common = { optional = true, version = "0.27.7", path = "../swc_common" }
swc_common = { optional = true, version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.185.0", path = "../swc_ecma_transforms" }

View File

@ -17,7 +17,7 @@ clap = { version = "3", features = ["derive"] }
rayon = "1.5.2"
sha1 = "0.10.1"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", features = [
swc_common = { version = "0.27.13", features = [
"concurrent",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }

View File

@ -15,7 +15,7 @@ bench = false
nom = "7.1.0"
serde = { version = "1", features = ["derive"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
[dev-dependencies]
anyhow = "1"

View File

@ -57,7 +57,7 @@ serde_json = "1"
sourcemap = "6"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
@ -85,7 +85,7 @@ swc_ecma_transforms = { version = "0.185.0", path = "../swc_ecma_transforms", fe
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.124.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.154.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.11.4", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.14.4", path = "../swc_node_comments" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0"
name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.179.0"
version = "0.179.1"
[package.metadata.docs.rs]
all-features = true
@ -38,14 +38,14 @@ rayon = { version = "1", optional = true }
relative-path = "1.2"
retain_mut = "0.1.2"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.122.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.154.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.15.4", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.16.4", path = "../swc_graph_analyzer/" }

View File

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

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.11.1"
version = "0.11.2"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -224,18 +224,18 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies
binding_macros = { optional = true, version = "0.6.0", path = "../binding_macros" }
binding_macros = { optional = true, version = "0.6.1", path = "../binding_macros" }
swc = { optional = true, version = "0.218.0", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.8", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.179.0", path = "../swc_bundler" }
swc_common = { optional = true, version = "0.27.11", path = "../swc_common" }
swc_common = { optional = true, version = "0.27.12", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.90.10", path = "../swc_ecma_ast" }
swc_ecma_loader = { optional = true, version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { optional = true, version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_quote_macros = { optional = true, version = "0.29.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms = { optional = true, version = "0.185.0", path = "../swc_ecma_transforms" }
swc_ecma_transforms_testing = { optional = true, version = "0.106.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_utils = { optional = true, version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { optional = true, version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.76.6", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.4.0", path = "../swc_node_bundler" }
@ -245,7 +245,7 @@ swc_plugin_macro = { optional = true, version = "0.9.7", path = "../s
swc_plugin_proxy = { optional = true, version = "0.18.13", path = "../swc_plugin_proxy" }
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_plugin_runner = { optional = true, version = "0.73.0", path = "../swc_plugin_runner", default-features = false }
swc_plugin_runner = { optional = true, version = "0.73.1", path = "../swc_plugin_runner", default-features = false }
[dev-dependencies]
testing = { version = "0.29.4", path = "../testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.108.0"
version = "0.108.1"
[lib]
bench = false
@ -23,4 +23,4 @@ rkyv = { version = "=0.7.37", optional = true }
serde = { version = "1.0.127", features = ["derive"] }
string_enum = { version = "0.3.1", path = "../string_enum/" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.118.0"
version = "0.118.1"
[lib]
bench = false
@ -18,12 +18,12 @@ bitflags = "1.3.2"
rustc-hash = "1.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" }
[dev-dependencies]
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.117.0", path = "../swc_css_parser" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.27.0"
version = "0.27.1"
[lib]
bench = false
@ -19,7 +19,7 @@ rayon = "1.5.1"
serde = { version = "1.0.133", features = ["derive"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" }
thiserror = "1.0.30"

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.83.0"
version = "0.83.1"
[lib]
bench = false
@ -15,7 +15,7 @@ bench = false
[dependencies]
serde = "1.0.118"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.105.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.117.0"
version = "0.117.1"
[lib]
bench = false
@ -20,7 +20,7 @@ bitflags = "1.2.1"
lexical = "6.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
[dev-dependencies]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.119.0"
version = "0.119.1"
[lib]
bench = false
@ -18,7 +18,7 @@ preset_env_base = { version = "0.3.0", path = "../preset_env_base" }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.105.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
license = "Apache-2.0"
name = "swc_css_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.105.0"
version = "0.105.1"
[lib]
bench = false
@ -17,6 +17,6 @@ once_cell = "1.10.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" }

View File

@ -22,6 +22,6 @@ path = []
[dependencies]
serde = { version = "1", optional = true }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_visit = { version = "0.5.2", path = "../swc_visit" }

View File

@ -31,7 +31,7 @@ scoped-tls = "1.0.0"
serde = { version = "1.0.133", features = ["derive"] }
string_enum = { version = "0.3.1", path = "../string_enum" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
unicode-id = "0.3"
[dev-dependencies]

View File

@ -20,14 +20,14 @@ rustc-hash = "1.1.0"
serde = "1.0.127"
sourcemap = "6"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_codegen_macros = { version = "0.7.1", path = "../swc_ecma_codegen_macros" }
tracing = "0.1.32"
[dev-dependencies]
criterion = "0.3"
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }

View File

@ -13,7 +13,7 @@ bench = false
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -13,7 +13,7 @@ bench = false
[dependencies]
phf = { version = "0.10", features = ["macros"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -21,12 +21,12 @@ rayon = "1.5.1"
regex = "1"
serde = { version = "1.0.133", features = ["derive"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"concurrent",
] }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]

View File

@ -36,7 +36,7 @@ pathdiff = "0.2.1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.64", optional = true }
swc_cached = { version = "0.3.5", optional = true, path = "../swc_cached" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
tracing = "0.1.32"
[dev-dependencies]

View File

@ -44,14 +44,14 @@ serde = { version = "1.0.118", features = ["derive"]
serde_json = "1.0.61"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.122.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.154.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_timer = { version = "0.15.4", path = "../swc_timer" }
tracing = "0.1.32"

View File

@ -31,7 +31,7 @@ num-bigint = "0.4"
serde = { version = "1", features = ["derive"] }
smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit", optional = true }
tracing = "0.1.32"

View File

@ -24,13 +24,13 @@ serde_json = "1"
st-map = "0.1.2"
string_enum = { version = "0.3.1", path = "../string_enum" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.185.0", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",
] }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]

View File

@ -13,10 +13,10 @@ bench = false
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_quote_macros = { version = "0.29.0", path = "../swc_ecma_quote_macros" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
[dev-dependencies]
testing = { version = "0.29.4", path = "../testing" }

View File

@ -18,7 +18,7 @@ pmutil = "0.5.1"
proc-macro2 = "1"
quote = "1"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_macros_common = { version = "0.3.3", path = "../swc_macros_common" }

View File

@ -16,7 +16,7 @@ anyhow = "1"
hex = "0.4"
sha-1 = "0.10"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.122.0", path = "../swc_ecma_codegen" }
testing = { version = "0.29.4", path = "../testing" }

View File

@ -32,7 +32,7 @@ typescript = ["swc_ecma_transforms_typescript"]
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.124.0", path = "../swc_ecma_transforms_compat", optional = true }
@ -41,7 +41,7 @@ swc_ecma_transforms_optimization = { version = "0.154.0", path = "../swc_ecma_tr
swc_ecma_transforms_proposal = { version = "0.132.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.143.0", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.147.0", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]

View File

@ -27,10 +27,10 @@ rustc-hash = "1.1.0"
serde = { version = "1", features = ["derive"] }
smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
tracing = "0.1.32"

View File

@ -13,8 +13,8 @@ bench = false
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -30,13 +30,13 @@ rayon = { version = "1.5.1", optional = true }
serde = { version = "1.0.118", features = ["derive"] }
smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.93.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.2", path = "../swc_trace_macro" }
tracing = "0.1.32"

View File

@ -25,14 +25,14 @@ regex = "1"
serde = { version = "1.0.118", features = ["derive"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader", features = [
"node",
] }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
tracing = "0.1.32"

View File

@ -26,12 +26,12 @@ rayon = { version = "1.5.1", optional = true }
rustc-hash = "1.1.0"
serde_json = "1.0.61"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
tracing = "0.1.32"

View File

@ -21,13 +21,13 @@ either = "1.6.1"
serde = { version = "1.0.118", features = ["derive"] }
smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader", optional = true }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.93.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]

View File

@ -27,13 +27,13 @@ serde = { version = "1.0.118", features = ["derive"] }
sha-1 = "0.10.0"
string_enum = { version = "0.3.1", path = "../string_enum" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]

View File

@ -18,13 +18,13 @@ hex = "0.4.3"
serde = "1"
serde_json = "1"
sha-1 = "0.10"
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.122.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "0.15.0", path = "../swc_ecma_testing" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
tempfile = "3.1.0"
testing = { version = "0.29.4", path = "../testing" }

View File

@ -15,11 +15,11 @@ bench = false
[dependencies]
serde = { version = "1.0.118", features = ["derive"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "0.143.0", path = "../swc_ecma_transforms_react" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]

View File

@ -24,7 +24,7 @@ indexmap = "1"
once_cell = "1.10.0"
rayon = { version = "1.5.1", optional = true }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
tracing = "0.1.32"

View File

@ -24,7 +24,7 @@ path = []
num-bigint = { version = "0.4", features = ["serde"] }
serde = { version = "1", optional = true }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_visit = { version = "0.5.2", path = "../swc_visit" }
tracing = "0.1.32"

View File

@ -47,7 +47,7 @@ swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser", option
swc_ecma_preset_env = { version = "0.161.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.33.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.185.0", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils", optional = true }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils", optional = true }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit", optional = true }
[dev-dependencies]

View File

@ -16,6 +16,6 @@ anyhow = "1"
miette = { version = "4.2.1", features = ["fancy"] }
once_cell = "1"
parking_lot = "0.12.0"
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"concurrent",
] }

View File

@ -22,4 +22,4 @@ better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }

View File

@ -23,14 +23,14 @@ rayon = "1.5.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.62"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"concurrent",
"sourcemap",
"tty-emitter",
] }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_estree_ast = { version = "0.17.4", path = "../swc_estree_ast" }
swc_node_comments = { version = "0.14.4", path = "../swc_node_comments/" }

View File

@ -15,4 +15,4 @@ bench = false
ahash = "0.7.6"
indexmap = "1.7.0"
petgraph = "0.6"
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }

View File

@ -24,4 +24,4 @@ rkyv = { version = "=0.7.37", optional = true }
serde = { version = "1.0.127", features = ["derive"] }
string_enum = { version = "0.3.1", path = "../string_enum/" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }

View File

@ -20,13 +20,13 @@ auto_impl = "0.5.0"
bitflags = "1.3.2"
rustc-hash = "1.1.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_html_ast = { version = "0.24.4", path = "../swc_html_ast" }
swc_html_codegen_macros = { version = "0.2.0", path = "../swc_html_codegen_macros" }
swc_html_utils = { version = "0.12.5", path = "../swc_html_utils" }
[dev-dependencies]
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"sourcemap",
] }
swc_html_parser = { version = "0.29.4", path = "../swc_html_parser" }

View File

@ -21,7 +21,7 @@ serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.118.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.83.0", path = "../swc_css_minifier" }

View File

@ -20,7 +20,7 @@ debug = []
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_html_ast = { version = "0.24.4", path = "../swc_html_ast" }
swc_html_utils = { version = "0.12.5", path = "../swc_html_utils" }

View File

@ -19,4 +19,4 @@ bench = false
once_cell = "1.10.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }

View File

@ -25,6 +25,6 @@ path = []
[dependencies]
serde = { version = "1", optional = true }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_html_ast = { version = "0.24.4", path = "../swc_html_ast" }
swc_visit = { version = "0.5.2", path = "../swc_visit" }

View File

@ -31,7 +31,7 @@ swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_bundler = { version = "0.179.0", path = "../swc_bundler", features = [
"concurrent",
] }
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"concurrent",
] }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
@ -39,7 +39,7 @@ swc_ecma_codegen = { version = "0.122.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.185.0", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "0.100.0", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
swc_node_base = { version = "0.5.5", path = "../swc_node_base" }
tracing = "0.1.32"

View File

@ -18,4 +18,4 @@ bench = false
ahash = "0.7.6"
dashmap = "5.1.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }

View File

@ -20,7 +20,7 @@ plugin-mode = []
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
bytecheck = "0.6.9"
rkyv = "=0.7.37"
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"plugin-base",
] }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git"
version = "0.73.0"
version = "0.73.1"
[lib]
bench = false
@ -28,7 +28,7 @@ once_cell = "1.10.0"
parking_lot = "0.12.0"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"plugin-rt",
"concurrent",
] }

View File

@ -19,4 +19,4 @@ is-macro = "0.2.0"
serde = { version = "1.0.127", features = ["derive"] }
string_enum = { version = "0.3.1", path = "../string_enum/" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }

View File

@ -20,12 +20,12 @@ auto_impl = "0.5.0"
bitflags = "1.3.2"
rustc-hash = "1.1.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_xml_ast = { version = "0.2.4", path = "../swc_xml_ast" }
swc_xml_codegen_macros = { version = "0.1.0", path = "../swc_xml_codegen_macros" }
[dev-dependencies]
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"sourcemap",
] }
swc_xml_parser = { version = "0.2.4", path = "../swc_xml_parser" }

View File

@ -20,7 +20,7 @@ debug = []
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_xml_ast = { version = "0.2.4", path = "../swc_xml_ast" }
[dev-dependencies]

View File

@ -25,6 +25,6 @@ path = []
[dependencies]
serde = { version = "1", optional = true }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.7", path = "../swc_common" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_visit = { version = "0.5.2", path = "../swc_visit" }
swc_xml_ast = { version = "0.2.4", path = "../swc_xml_ast" }

View File

@ -18,7 +18,7 @@ once_cell = "1.10.0"
pretty_assertions = "1.1"
regex = "1"
serde_json = "1.0.71"
swc_common = { version = "0.27.7", path = "../swc_common", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"tty-emitter",
] }
swc_error_reporters = { version = "0.11.4", path = "../swc_error_reporters" }