Skip to content

Commit

Permalink
chore: unify crate versions (#5449)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen authored Jan 24, 2024
1 parent 035b2b7 commit a44c12b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/rspack_loader_swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rspack_plugin_javascript = { path = "../rspack_plugin_javascript" }
rspack_swc_visitors = { path = "../rspack_swc_visitors" }
rspack_util = { path = "../rspack_util" }
serde = { workspace = true, features = ["derive"] }
serde_json = "1.0.100"
serde_json = { workspace = true }
swc_config = { workspace = true }
swc_core = { workspace = true, features = [
"base",
Expand Down
4 changes: 2 additions & 2 deletions crates/rspack_plugin_css/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ swc_core = { workspace = true, features = [
"css_minifier",
] }
tracing = { workspace = true }
urlencoding = "2.1.2"
urlencoding = { workspace = true }

[dev-dependencies]
hrx-parser = "0.1.1"
insta = "1.30.0"
insta = { workspace = true }
rspack_testing = { path = "../rspack_testing" }
2 changes: 1 addition & 1 deletion crates/rspack_plugin_javascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ swc_core = { workspace = true, features = [
"ecma_quote",
] }
swc_node_comments = { workspace = true }
url = "2.4.0"
url = { workspace = true }
2 changes: 1 addition & 1 deletion crates/rspack_testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ swc_core = { workspace = true }
testing_macros = { workspace = true, features = [] }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "test-util", "parking_lot"] }

insta = { version = "1.31.0", features = ["json"] }
insta = { workspace = true, features = ["json"] }
itertools = { workspace = true }

1 comment on commit a44c12b

@rspack-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Benchmark detail: Open

name base current %
10000_development-mode + exec 1.73 s ± 12 ms 1.75 s ± 15 ms +1.61%
10000_development-mode_hmr + exec 973 ms ± 9.8 ms 947 ms ± 7.2 ms -2.75%
10000_production-mode + exec 2.72 s ± 23 ms 2.79 s ± 74 ms +2.37%
threejs_development-mode_10x + exec 2.04 s ± 18 ms 2.04 s ± 27 ms -0.14%
threejs_development-mode_10x_hmr + exec 1.26 s ± 12 ms 1.26 s ± 7.2 ms -0.27%
threejs_production-mode_10x + exec 5.97 s ± 72 ms 6.14 s ± 44 ms +2.75%

Please sign in to comment.