Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jul 1, 2022
1 parent d09bdfb commit c2c923e
Show file tree
Hide file tree
Showing 59 changed files with 463 additions and 463 deletions.
116 changes: 58 additions & 58 deletions Cargo.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions crates/dbg-swc/Cargo.toml
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.26.0"
version = "0.27.0"

[[bin]]
bench = false
Expand All @@ -17,17 +17,17 @@ clap = { version = "3", features = ["derive"] }
rayon = "1.5.2"
sha1 = "0.10.1"
swc_atoms = { version = "0.2.11", path = "../swc_atoms" }
swc_common = { version = "0.19.0", features = [
swc_common = { version = "0.20.0", features = [
"concurrent",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.80.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.111.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.127.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.107.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.92.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.66.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.3.0", path = "../swc_error_reporters" }
swc_timer = { version = "0.7.0", path = "../swc_timer" }
swc_ecma_ast = { version = "0.81.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.112.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.128.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.108.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.93.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.67.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.4.0", path = "../swc_error_reporters" }
swc_timer = { version = "0.8.0", path = "../swc_timer" }
tempdir = "0.3.7"
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter"] }
Expand Down
10 changes: 5 additions & 5 deletions crates/jsdoc/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "jsdoc"
version = "0.76.0"
version = "0.77.0"

[lib]
bench = false
Expand All @@ -15,11 +15,11 @@ bench = false
nom = "7.1.0"
serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.19.0", path = "../swc_common"}
swc_common = { version = "0.20.0", path = "../swc_common"}

[dev-dependencies]
anyhow = "1"
dashmap = "5.1.0"
swc_ecma_ast = {version = "0.80.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.107.0", path = "../swc_ecma_parser"}
testing = {version = "0.21.0", path = "../testing"}
swc_ecma_ast = {version = "0.81.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.108.0", path = "../swc_ecma_parser"}
testing = {version = "0.22.0", path = "../testing"}
50 changes: 25 additions & 25 deletions crates/swc/Cargo.toml
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.195.0"
version = "0.196.0"

[lib]
bench = false
Expand Down Expand Up @@ -42,43 +42,43 @@ serde_json = "1"
sourcemap = "6"
swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_cached = {version = "0.1.0", path = "../swc_cached"}
swc_common = {version = "0.19.0", path = "../swc_common", features = [
swc_common = {version = "0.20.0", path = "../swc_common", features = [
"sourcemap",
"concurrent",
"parking_lot",
]}
swc_config = {version = "0.1.1", path = "../swc_config"}
swc_ecma_ast = {version = "0.80.0", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.111.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.74.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.47.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.31.0", path = "../swc_ecma_loader", features = [
swc_ecma_ast = {version = "0.81.0", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.112.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.75.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.48.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.32.0", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
]}
swc_ecma_minifier = {version = "0.127.0", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.107.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.140.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.165.0", path = "../swc_ecma_transforms", features = [
swc_ecma_minifier = {version = "0.128.0", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.108.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.141.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.166.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
"proposal",
"react",
"typescript",
]}
swc_ecma_transforms_base = {version = "0.92.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.108.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.135.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.88.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.66.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.170.0", path = "../swc_ecmascript"}
swc_error_reporters = {version = "0.3.0", path = "../swc_error_reporters"}
swc_node_comments = {version = "0.6.0", path = "../swc_node_comments"}
swc_plugin_proxy = {version = "0.5.0", path = "../swc_plugin_proxy", optional = true}
swc_plugin_runner = {version = "0.58.0", path = "../swc_plugin_runner", optional = true, default-features = false}
swc_timer = {version = "0.7.0", path = "../swc_timer"}
swc_ecma_transforms_base = {version = "0.93.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.109.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.136.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.89.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.67.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.171.0", path = "../swc_ecmascript"}
swc_error_reporters = {version = "0.4.0", path = "../swc_error_reporters"}
swc_node_comments = {version = "0.7.0", path = "../swc_node_comments"}
swc_plugin_proxy = {version = "0.6.0", path = "../swc_plugin_proxy", optional = true}
swc_plugin_runner = {version = "0.59.0", path = "../swc_plugin_runner", optional = true, default-features = false}
swc_timer = {version = "0.8.0", path = "../swc_timer"}
swc_visit = {version = "0.3.0", path = "../swc_visit"}
tracing = "0.1.32"

Expand All @@ -98,12 +98,12 @@ version = "2.0.0"
ansi_term = "0.12"
criterion = "0.3"
rayon = "1.5.1"
swc_ecma_lints = {version = "0.47.0", path = "../swc_ecma_lints", features = [
swc_ecma_lints = {version = "0.48.0", path = "../swc_ecma_lints", features = [
"non_critical_lints",
]}
swc_ecma_testing = {version = "0.4.0", path = "../swc_ecma_testing"}
swc_ecma_testing = {version = "0.5.0", path = "../swc_ecma_testing"}
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}
testing = {version = "0.21.0", path = "../testing"}
testing = {version = "0.22.0", path = "../testing"}
walkdir = "2"

[[example]]
Expand Down
36 changes: 18 additions & 18 deletions crates/swc_bundler/Cargo.toml
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.160.0"
version = "0.161.0"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -38,17 +38,17 @@ rayon = { version = "1", optional = true }
relative-path = "1.2"
retain_mut = "0.1.2"
swc_atoms = { version = "0.2.4", path = "../swc_atoms" }
swc_common = { version = "0.19.0", path = "../swc_common" }
swc_ecma_ast = { version = "0.80.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.111.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.31.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.107.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.92.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.135.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.88.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.66.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.7.0", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.8.0", path = "../swc_graph_analyzer/" }
swc_common = { version = "0.20.0", path = "../swc_common" }
swc_ecma_ast = { version = "0.81.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.112.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.32.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.108.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.93.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.136.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.89.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.67.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.8.0", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.9.0", path = "../swc_graph_analyzer/" }
tracing = "0.1.32"

[dev-dependencies]
Expand All @@ -57,15 +57,15 @@ ntest = "0.7.2"
path-clean = "=0.1.0"
reqwest = { version = "0.11.4", features = ["blocking"] }
sha-1 = "0.10"
swc_ecma_loader = { version = "0.31.0", path = "../swc_ecma_loader", features = [
swc_ecma_loader = { version = "0.32.0", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.127.0", path = "../swc_ecma_minifier" }
swc_ecma_transforms_proposal = { version = "0.116.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.124.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.128.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_minifier = { version = "0.128.0", path = "../swc_ecma_minifier" }
swc_ecma_transforms_proposal = { version = "0.117.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.125.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.129.0", path = "../swc_ecma_transforms_typescript" }
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
tempfile = "3.1.0"
testing = { version = "0.21.0", path = "../testing" }
testing = { version = "0.22.0", path = "../testing" }
url = "2.1.1"
8 changes: 4 additions & 4 deletions crates/swc_cli/Cargo.toml
Expand Up @@ -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.69.0"
version = "0.70.0"

[[bin]]
bench = false
Expand All @@ -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.195.0", path = "../swc" }
swc_common = { version = "0.19.0", path = "../swc_common" }
swc_plugin_runner = { version = "0.58.0", path = "../swc_plugin_runner", default-features = false, optional = true }
swc = { version = "0.196.0", path = "../swc" }
swc_common = { version = "0.20.0", path = "../swc_common" }
swc_plugin_runner = { version = "0.59.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"
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_common/Cargo.toml
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.19.1"
version = "0.20.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
14 changes: 7 additions & 7 deletions crates/swc_css/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.107.0"
version = "0.108.0"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -19,9 +19,9 @@ bench = false
minifier = ["swc_css_minifier"]

[dependencies]
swc_css_ast = {version = "0.94.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.104.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.69.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.103.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.91.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.93.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.95.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.105.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.70.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.104.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.92.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.94.0", path = "../swc_css_visit"}
4 changes: 2 additions & 2 deletions crates/swc_css_ast/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.94.0"
version = "0.95.0"

[lib]
bench = false
Expand All @@ -16,4 +16,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.2.7", path = "../swc_atoms"}
swc_common = { version = "0.19.0", path = "../swc_common"}
swc_common = { version = "0.20.0", path = "../swc_common"}
14 changes: 7 additions & 7 deletions crates/swc_css_codegen/Cargo.toml
Expand Up @@ -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.104.0"
version = "0.105.0"

[lib]
bench = false
Expand All @@ -16,14 +16,14 @@ bench = false
auto_impl = "0.5.0"
bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.19.0", path = "../swc_common"}
swc_css_ast = {version = "0.94.0", path = "../swc_css_ast"}
swc_common = { version = "0.20.0", path = "../swc_common"}
swc_css_ast = {version = "0.95.0", path = "../swc_css_ast"}
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}

[dev-dependencies]
swc_common = { version = "0.19.0", path = "../swc_common", features = [
swc_common = { version = "0.20.0", path = "../swc_common", features = [
"sourcemap",
]}
swc_css_parser = {version = "0.103.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.93.0", path = "../swc_css_visit"}
testing = {version = "0.21.0", path = "../testing"}
swc_css_parser = {version = "0.104.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.94.0", path = "../swc_css_visit"}
testing = {version = "0.22.0", path = "../testing"}
12 changes: 6 additions & 6 deletions crates/swc_css_lints/Cargo.toml
Expand Up @@ -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.13.0"
version = "0.14.0"

[lib]
bench = false
Expand All @@ -19,12 +19,12 @@ rayon = "1.5.1"
serde = {version = "1.0.133", features = ["derive"]}
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_cached = {version = "0.1.0", path = "../swc_cached"}
swc_common = { version = "0.19.0", path = "../swc_common"}
swc_css_ast = {version = "0.94.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.93.0", path = "../swc_css_visit"}
swc_common = { version = "0.20.0", path = "../swc_common"}
swc_css_ast = {version = "0.95.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.94.0", path = "../swc_css_visit"}
thiserror = "1.0.30"

[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = {version = "0.103.0", path = "../swc_css_parser"}
testing = {version = "0.21.0", path = "../testing"}
swc_css_parser = {version = "0.104.0", path = "../swc_css_parser"}
testing = {version = "0.22.0", path = "../testing"}
16 changes: 8 additions & 8 deletions crates/swc_css_minifier/Cargo.toml
Expand Up @@ -7,19 +7,19 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.69.0"
version = "0.70.0"

[lib]
bench = false

[dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = { version = "0.19.0", path = "../swc_common"}
swc_css_ast = {version = "0.94.0", path = "../swc_css_ast"}
swc_css_utils = { version = "0.91.0", path = "../swc_css_utils/" }
swc_css_visit = {version = "0.93.0", path = "../swc_css_visit"}
swc_common = { version = "0.20.0", path = "../swc_common"}
swc_css_ast = {version = "0.95.0", path = "../swc_css_ast"}
swc_css_utils = { version = "0.92.0", path = "../swc_css_utils/" }
swc_css_visit = {version = "0.94.0", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.104.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.103.0", path = "../swc_css_parser"}
testing = {version = "0.21.0", path = "../testing"}
swc_css_codegen = {version = "0.105.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.104.0", path = "../swc_css_parser"}
testing = {version = "0.22.0", path = "../testing"}
10 changes: 5 additions & 5 deletions crates/swc_css_parser/Cargo.toml
Expand Up @@ -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.103.0"
version = "0.104.0"

[lib]
bench = false
Expand All @@ -19,16 +19,16 @@ debug = []
bitflags = "1.2.1"
lexical = "6.1.0"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.19.0", path = "../swc_common" }
swc_css_ast = { version = "0.94.0", path = "../swc_css_ast" }
swc_common = { version = "0.20.0", path = "../swc_common" }
swc_css_ast = { version = "0.95.0", path = "../swc_css_ast" }

[dev-dependencies]
criterion = "0.3"
serde = "1.0.127"
serde_json = "1.0.66"
swc_css_visit = { version = "0.93.0", path = "../swc_css_visit" }
swc_css_visit = { version = "0.94.0", path = "../swc_css_visit" }
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
testing = { version = "0.21.0", path = "../testing" }
testing = { version = "0.22.0", path = "../testing" }

[[bench]]
harness = false
Expand Down

0 comments on commit c2c923e

Please sign in to comment.