Skip to content

Commit

Permalink
chore: Bump crates
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Apr 29, 2024
1 parent 0dcdae9 commit 7ac3b0a
Show file tree
Hide file tree
Showing 94 changed files with 770 additions and 770 deletions.
184 changes: 92 additions & 92 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/ast_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "ast_node"
repository = "https://github.com/swc-project/swc.git"
version = "0.9.7"
version = "0.9.8"

[lib]
bench = false
Expand All @@ -16,7 +16,7 @@ proc-macro = true
proc-macro2 = { workspace = true }
quote = { workspace = true }

swc_macros_common = { version = "0.3.9", path = "../swc_macros_common" }
swc_macros_common = { version = "0.3.11", path = "../swc_macros_common" }
[dependencies.syn]
features = ["derive", "fold", "parsing", "printing", "visit-mut"]
workspace = true
12 changes: 6 additions & 6 deletions crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.65.0"
version = "0.65.1"

[lib]
bench = false
Expand Down Expand Up @@ -33,11 +33,11 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.274.0", path = "../swc" }
swc_common = { optional = true, version = "0.33.20", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.113.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.230.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.99.0", path = "../swc_ecma_visit" }
swc = { optional = true, version = "0.274.1", path = "../swc" }
swc_common = { optional = true, version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.230.1", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.99.1", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { workspace = true, optional = true }
Expand Down
20 changes: 10 additions & 10 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "dbg-swc"
repository = "https://github.com/kdy1/dbg-swc.git"
version = "0.92.0"
version = "0.92.1"

[[bin]]
bench = false
Expand All @@ -27,17 +27,17 @@ clap = { version = "3", features = ["derive"] }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", features = [
swc_common = { version = "0.33.26", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier", features = [
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.193.2", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.19", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.21", path = "../swc_timer" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.20", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.22", path = "../swc_timer" }
4 changes: 2 additions & 2 deletions crates/from_variant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "from_variant"
repository = "https://github.com/swc-project/swc.git"
version = "0.1.7"
version = "0.1.8"

[lib]
bench = false
Expand All @@ -15,7 +15,7 @@ proc-macro = true
[dependencies]
proc-macro2 = { workspace = true }

swc_macros_common = { version = "0.3.9", path = "../swc_macros_common" }
swc_macros_common = { version = "0.3.11", path = "../swc_macros_common" }
[dependencies.syn]
features = ["derive", "fold", "parsing", "printing"]
workspace = true
10 changes: 5 additions & 5 deletions crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "jsdoc"
version = "0.113.0"
version = "0.113.1"

[lib]
bench = false
Expand All @@ -19,12 +19,12 @@ nom = { workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
swc_common = { version = "0.33.26", path = "../swc_common" }

[dev-dependencies]
anyhow = { workspace = true }
dashmap = { workspace = true }

swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" }
testing = { version = "0.35.21", path = "../testing" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
testing = { version = "0.35.24", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/preset_env_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/preset_env_base/"
edition = "2021"
license = "Apache-2.0"
name = "preset_env_base"
version = "0.4.12"
version = "0.4.13"

[lib]
bench = false
Expand All @@ -21,4 +21,4 @@ serde = { workspace = true, features = ["derive"] }
st-map = { workspace = true }
tracing = { workspace = true }

from_variant = { version = "0.1.7", path = "../from_variant" }
from_variant = { version = "0.1.8", path = "../from_variant" }
4 changes: 2 additions & 2 deletions crates/string_enum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "string_enum"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.3"
version = "0.4.4"

[lib]
bench = false
Expand All @@ -15,7 +15,7 @@ proc-macro = true
[dependencies]
proc-macro2 = { workspace = true }
quote = { workspace = true }
swc_macros_common = { version = "0.3.9", path = "../swc_macros_common" }
swc_macros_common = { version = "0.3.11", path = "../swc_macros_common" }
[dependencies.syn]
features = ["full", "parsing", "printing", "extra-traits"]
workspace = true
Expand Down
56 changes: 28 additions & 28 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.274.0"
version = "0.274.1"

[lib]
bench = false
Expand Down Expand Up @@ -69,44 +69,44 @@ url = { workspace = true }

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.19", path = "../swc_cached" }
swc_common = { version = "0.33.20", path = "../swc_common", features = [
swc_common = { version = "0.33.26", path = "../swc_common", features = [
"ahash",
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.8.0", path = "../swc_compiler_base" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.114.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.93.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader", features = [
swc_compiler_base = { version = "0.8.1", path = "../swc_compiler_base" }
swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.114.1", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.93.1", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.207.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.230.0", path = "../swc_ecma_transforms", features = [
swc_ecma_minifier = { version = "0.193.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.207.1", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
"proposal",
"react",
"typescript",
] }
swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.199.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.19", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.19", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.42.0", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.107.0", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.21", path = "../swc_timer" }
swc_visit = { version = "0.5.10", path = "../swc_visit" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.20", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.20", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.42.1", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.107.1", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.22", path = "../swc_timer" }
swc_visit = { version = "0.5.14", path = "../swc_visit" }

[dependencies.tokio]
features = ["rt", "rt-multi-thread"]
Expand All @@ -130,15 +130,15 @@ criterion = { workspace = true }
rayon = { workspace = true }
walkdir = { workspace = true }

swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_lints = { version = "0.93.0", path = "../swc_ecma_lints", features = [
swc_ecma_lints = { version = "0.93.1", path = "../swc_ecma_lints", features = [
"non_critical_lints",
] }
swc_ecma_testing = { version = "0.22.22", path = "../swc_ecma_testing" }
swc_ecma_testing = { version = "0.22.23", path = "../swc_ecma_testing" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.21", path = "../testing" }
testing = { version = "0.35.24", path = "../testing" }

[[example]]
name = "transform"
Expand Down
36 changes: 18 additions & 18 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.226.0"
version = "0.226.1"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -38,17 +38,17 @@ relative-path = { workspace = true }
tracing = { workspace = true }

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.199.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.20", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.22.22", path = "../swc_graph_analyzer/" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.22", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.22.23", path = "../swc_graph_analyzer/" }

[dev-dependencies]
hex = { workspace = true }
Expand All @@ -59,15 +59,15 @@ sha-1 = "0.10"
tempfile = { workspace = true }
url = { workspace = true }

swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader", features = [
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.193.2", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.172.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.184.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.189.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.172.2", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.184.1", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.189.1", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.21", path = "../testing" }
testing = { version = "0.35.24", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.9.0"
version = "0.9.1"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -40,7 +40,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "0.91.0", features = [
swc_core = { version = "0.91.2", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_common"
repository = "https://github.com/swc-project/swc.git"
version = "0.33.25"
version = "0.33.26"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -62,12 +62,12 @@ tracing = { workspace = true }
unicode-width = { workspace = true }
url = { workspace = true }

ast_node = { version = "0.9.6", path = "../ast_node" }
ast_node = { version = "0.9.8", path = "../ast_node" }
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
from_variant = { version = "0.1.7", path = "../from_variant" }
from_variant = { version = "0.1.8", path = "../from_variant" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_eq_ignore_macros = { version = "0.1.3", path = "../swc_eq_ignore_macros" }
swc_visit = { version = "0.5.10", path = "../swc_visit" }
swc_visit = { version = "0.5.14", path = "../swc_visit" }


[dev-dependencies]
Expand Down
18 changes: 9 additions & 9 deletions crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.8.0"
version = "0.8.1"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -21,16 +21,16 @@ serde = { workspace = true, features = ["derive"] }
sourcemap = { workspace = true }

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common", features = [
swc_common = { version = "0.33.26", path = "../swc_common", features = [
"sourcemap",
] }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.21", path = "../swc_timer" }
swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.193.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.22", path = "../swc_timer" }

[dependencies.napi-derive]
default-features = false
Expand Down

0 comments on commit 7ac3b0a

Please sign in to comment.