Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix glob workspace members matching in sdist #1846

Merged
merged 1 commit into from
Nov 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 17 additions & 15 deletions src/source_distribution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ fn rewrite_cargo_toml(
known_path_deps: &HashMap<String, PathDependency>,
) -> Result<String> {
let manifest_path = manifest_path.as_ref();
debug!("Rewriting Cargo.toml at {}", manifest_path.display());
let mut document = parse_toml_file(manifest_path, "Cargo.toml")?;

// Update workspace members
Expand All @@ -66,23 +67,24 @@ fn rewrite_cargo_toml(
for member in members {
if let toml_edit::Value::String(ref s) = member {
let member_path = s.value();
let path = Path::new(member_path);
if let Some(name) = path.file_name().and_then(|x| x.to_str()) {
// See https://github.com/rust-lang/cargo/blob/0de91c89e6479016d0ed8719fdc2947044335b36/src/cargo/util/restricted_names.rs#L119-L122
let is_glob_pattern = name.contains(['*', '?', '[', ']']);
if is_glob_pattern {
let pattern = glob::Pattern::new(name).context(format!(
// See https://github.com/rust-lang/cargo/blob/0de91c89e6479016d0ed8719fdc2947044335b36/src/cargo/util/restricted_names.rs#L119-L122
let is_glob_pattern = member_path.contains(['*', '?', '[', ']']);
if is_glob_pattern {
let pattern = glob::Pattern::new(member_path).with_context(|| {
format!(
"Invalid `workspace.members` glob pattern: {} in {}",
name,
member_path,
manifest_path.display()
))?;
if known_path_deps
.keys()
.any(|path_dep| pattern.matches(path_dep))
{
new_members.push(member_path);
}
} else if known_path_deps.contains_key(member_path) {
)
})?;
if known_path_deps.values().any(|path_dep| {
let relative_path = path_dep
.manifest_path
.strip_prefix(&path_dep.workspace_root)
.unwrap();
let relative_path_str = relative_path.to_str().unwrap();
pattern.matches(relative_path_str)
}) {
new_members.push(member_path);
}
} else if known_path_deps.contains_key(member_path) {
Expand Down