diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-09-27 18:02:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-27 18:02:35 -0400 |
| commit | a44c83a3d66a576e93f642ec475ea505215a8d62 (patch) | |
| tree | 549d3f8d563ef9685f210f37337a9ef3b52f5ec3 /Cargo.lock | |
| parent | abdb6aad6e3e9aa8b6943eba1bbe297f34a825f4 (diff) | |
fix(npm): use ntfs junctions in node_modules folder on Windows (#16061)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index a7bfecc65..b6bbbf31a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -848,6 +848,7 @@ dependencies = [ "indexmap", "indicatif", "jsonc-parser", + "junction", "libc", "log 0.4.17", "mitata", @@ -2494,6 +2495,16 @@ dependencies = [ ] [[package]] +name = "junction" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be39922b087cecaba4e2d5592dedfc8bda5d4a5a1231f143337cca207950b61d" +dependencies = [ + "scopeguard", + "winapi 0.3.9", +] + +[[package]] name = "kernel32-sys" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" |
