mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
chore: Publish crates
This commit is contained in:
parent
2bd5b4413a
commit
793c423a24
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -2935,7 +2935,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.204.0"
|
||||
version = "0.205.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3063,7 +3063,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli"
|
||||
version = "0.78.0"
|
||||
version = "0.79.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atty",
|
||||
@ -3872,7 +3872,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.125.0"
|
||||
version = "0.126.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -4101,7 +4101,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin"
|
||||
version = "0.76.0"
|
||||
version = "0.77.0"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
@ -4113,7 +4113,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin_macro"
|
||||
version = "0.4.1"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -4122,7 +4122,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin_proxy"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"better_scoped_tls",
|
||||
"bytecheck",
|
||||
@ -4133,7 +4133,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin_runner"
|
||||
version = "0.63.0"
|
||||
version = "0.64.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"criterion",
|
||||
|
@ -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.204.0"
|
||||
version = "0.205.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -76,8 +76,8 @@ swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.179.0", path = "../swc_ecmascript"}
|
||||
swc_error_reporters = {version = "0.7.0", path = "../swc_error_reporters"}
|
||||
swc_node_comments = {version = "0.10.0", path = "../swc_node_comments"}
|
||||
swc_plugin_proxy = {version = "0.10.0", path = "../swc_plugin_proxy", optional = true}
|
||||
swc_plugin_runner = {version = "0.63.0", path = "../swc_plugin_runner", optional = true, default-features = false}
|
||||
swc_plugin_proxy = {version = "0.11.0", path = "../swc_plugin_proxy", optional = true}
|
||||
swc_plugin_runner = {version = "0.64.0", path = "../swc_plugin_runner", optional = true, default-features = false}
|
||||
swc_timer = {version = "0.11.0", path = "../swc_timer"}
|
||||
swc_visit = {version = "0.4.0", path = "../swc_visit"}
|
||||
tracing = "0.1.32"
|
||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_cli"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.78.0"
|
||||
version = "0.79.0"
|
||||
|
||||
[[bin]]
|
||||
bench = false
|
||||
@ -31,9 +31,9 @@ rayon = "1"
|
||||
relative-path = "1.6.1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = { version = "1", features = ["unbounded_depth"] }
|
||||
swc = { version = "0.204.0", path = "../swc" }
|
||||
swc = { version = "0.205.0", path = "../swc" }
|
||||
swc_common = { version = "0.23.0", path = "../swc_common" }
|
||||
swc_plugin_runner = { version = "0.63.0", path = "../swc_plugin_runner", default-features = false, optional = true }
|
||||
swc_plugin_runner = { version = "0.64.0", path = "../swc_plugin_runner", default-features = false, optional = true }
|
||||
swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" }
|
||||
tracing = "0.1.32"
|
||||
tracing-chrome = "0.5.0"
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_estree_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.125.0"
|
||||
version = "0.126.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -38,7 +38,7 @@ swc_node_comments = {version = "0.10.0", path = "../swc_node_comments/"}
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
pretty_assertions = "1.1"
|
||||
swc = {version = "0.204.0", path = "../swc"}
|
||||
swc = {version = "0.205.0", path = "../swc"}
|
||||
swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms/"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.76.0"
|
||||
version = "0.77.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -25,7 +25,7 @@ swc_common = { version = "0.23.0", path = "../swc_common", features = [
|
||||
] }
|
||||
swc_ecma_quote = { version = "0.25.0", path = "../swc_ecma_quote", optional = true }
|
||||
swc_ecmascript = { version = "0.179.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] }
|
||||
swc_plugin_proxy = { version = "0.10.0", path = "../swc_plugin_proxy", features = [
|
||||
swc_plugin_proxy = { version = "0.11.0", path = "../swc_plugin_proxy", features = [
|
||||
"plugin-mode",
|
||||
] }
|
||||
swc_plugin_macro = { version = "0.4.1", path = "../swc_plugin_macro" }
|
||||
swc_plugin_macro = { version = "0.5.0", path = "../swc_plugin_macro" }
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin_macro"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.4.1"
|
||||
version = "0.5.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin_proxy"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin_runner"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.63.0"
|
||||
version = "0.64.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -33,7 +33,7 @@ swc_common = { version = "0.23.0", path = "../swc_common", features = [
|
||||
swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast", features = [
|
||||
"rkyv-impl",
|
||||
] }
|
||||
swc_plugin_proxy = { version = "0.10.0", path = "../swc_plugin_proxy", features = [
|
||||
swc_plugin_proxy = { version = "0.11.0", path = "../swc_plugin_proxy", features = [
|
||||
"plugin-rt",
|
||||
] }
|
||||
tracing = "0.1.32"
|
||||
|
Loading…
Reference in New Issue
Block a user