feat: use symlinks for workspace dependencies

This commit is contained in:
daimond113 2024-11-24 20:22:15 +01:00
parent 2c003c62aa
commit 80c47aa0e4
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 29 additions and 32 deletions

View file

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Print that no updates are available in `outdated` command by @daimond113 - Print that no updates are available in `outdated` command by @daimond113
- Support negated globs in `workspace_members` field by @daimond113 - Support negated globs in `workspace_members` field by @daimond113
- Make `includes` use glob patterns by @daimond113 - Make `includes` use glob patterns by @daimond113
- Use symlinks for workspace dependencies to not require reinstalling by @daimond113
## [0.5.0-rc.12] - 2024-11-22 ## [0.5.0-rc.12] - 2024-11-22
### Added ### Added

View file

@ -8,7 +8,7 @@ use relative_path::RelativePathBuf;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use sha2::{Digest, Sha256}; use sha2::{Digest, Sha256};
use std::{ use std::{
collections::{BTreeMap, VecDeque}, collections::BTreeMap,
future::Future, future::Future,
path::{Path, PathBuf}, path::{Path, PathBuf},
}; };
@ -169,44 +169,40 @@ impl PackageFS {
PackageFS::Copy(src, target) => { PackageFS::Copy(src, target) => {
fs::create_dir_all(destination.as_ref()).await?; fs::create_dir_all(destination.as_ref()).await?;
let mut read_dirs = VecDeque::from([fs::read_dir(src.to_path_buf())]); let mut read_dir = fs::read_dir(src).await?;
while let Some(read_dir) = read_dirs.pop_front() { 'entry: while let Some(entry) = read_dir.next_entry().await? {
let mut read_dir = read_dir.await?; let relative_path =
'entry: while let Some(entry) = read_dir.next_entry().await? { RelativePathBuf::from_path(entry.path().strip_prefix(src).unwrap())
let relative_path = .unwrap();
RelativePathBuf::from_path(entry.path().strip_prefix(src).unwrap()) let dest_path = relative_path.to_path(destination.as_ref());
.unwrap(); let file_name = relative_path.file_name().unwrap();
let file_name = relative_path.file_name().unwrap();
if entry.file_type().await?.is_dir() { if entry.file_type().await?.is_dir() {
if IGNORED_DIRS.contains(&file_name) { if IGNORED_DIRS.contains(&file_name) {
continue;
}
for other_target in TargetKind::VARIANTS {
if target.packages_folder(other_target) == file_name {
continue 'entry;
}
}
fs::create_dir_all(relative_path.to_path(destination.as_ref())).await?;
read_dirs.push_back(fs::read_dir(entry.path()));
continue; continue;
} }
if IGNORED_FILES.contains(&file_name) { for other_target in TargetKind::VARIANTS {
continue; if target.packages_folder(other_target) == file_name {
continue 'entry;
}
} }
let path = relative_path.to_path(destination.as_ref()); #[cfg(windows)]
fs::symlink_dir(entry.path(), dest_path).await?;
if let Some(parent) = path.parent() { #[cfg(unix)]
fs::create_dir_all(parent).await?; fs::symlink(entry.path(), dest_path).await?;
} continue;
fs::copy(entry.path(), path).await?;
} }
if IGNORED_FILES.contains(&file_name) {
continue;
}
#[cfg(windows)]
fs::symlink_file(entry.path(), dest_path).await?;
#[cfg(unix)]
fs::symlink(entry.path(), dest_path).await?;
} }
} }
} }