diff --git a/crates/rspack_loader_swc/Cargo.toml b/crates/rspack_loader_swc/Cargo.toml index ac8ac132bf6c..a1cb9a085cd7 100644 --- a/crates/rspack_loader_swc/Cargo.toml +++ b/crates/rspack_loader_swc/Cargo.toml @@ -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", diff --git a/crates/rspack_plugin_css/Cargo.toml b/crates/rspack_plugin_css/Cargo.toml index 9bb8becbb89b..b1911db68f8a 100644 --- a/crates/rspack_plugin_css/Cargo.toml +++ b/crates/rspack_plugin_css/Cargo.toml @@ -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" } diff --git a/crates/rspack_plugin_javascript/Cargo.toml b/crates/rspack_plugin_javascript/Cargo.toml index 609712845775..341ec637bfb5 100644 --- a/crates/rspack_plugin_javascript/Cargo.toml +++ b/crates/rspack_plugin_javascript/Cargo.toml @@ -44,4 +44,4 @@ swc_core = { workspace = true, features = [ "ecma_quote", ] } swc_node_comments = { workspace = true } -url = "2.4.0" +url = { workspace = true } diff --git a/crates/rspack_testing/Cargo.toml b/crates/rspack_testing/Cargo.toml index 3a4ba34e70eb..3d68b2e31a84 100644 --- a/crates/rspack_testing/Cargo.toml +++ b/crates/rspack_testing/Cargo.toml @@ -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 }