From c509e31a04a629e280863c0893e779bf4f52b281 Mon Sep 17 00:00:00 2001 From: sangwook Date: Wed, 15 Apr 2026 00:34:16 +0900 Subject: [PATCH] fix: add missing \`path-posix\` workspace dependency rolldown upgrade in #1375 introduced \`path-posix\` in \`rolldown_plugin_vite_import_glob\` but it was not added to the root workspace dependencies, causing \`cargo build\` to fail after \`just init\`. Fixes #1381 Co-Authored-By: Claude Sonnet 4.6 --- Cargo.lock | 11 +++++++++++ Cargo.toml | 1 + 2 files changed, 12 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index f59b418b9e..01601c3dda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4346,6 +4346,15 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef" +[[package]] +name = "path-posix" +version = "0.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "252f3dfa42084a2ba8294ec1cf6bf7beaed19753989bd17da833c33c6a3ddf9d" +dependencies = [ + "memchr", +] + [[package]] name = "pathdiff" version = "0.2.3" @@ -5494,6 +5503,7 @@ dependencies = [ "rolldown_common", "rolldown_plugin", "rolldown_utils", + "serde_json", ] [[package]] @@ -5597,6 +5607,7 @@ dependencies = [ "fast-glob", "itoa", "oxc", + "path-posix", "rolldown_common", "rolldown_ecmascript_utils", "rolldown_plugin", diff --git a/Cargo.toml b/Cargo.toml index fc4959777c..c32588b83e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -133,6 +133,7 @@ num-format = "0.4" num_cpus = "1.17" owo-colors = "4.2.2" parking_lot = "0.12.5" +path-posix = "0.0.1" pathdiff = "0.2.3" pnp = "0.12.7" percent-encoding = "2.3.1"