Skip to content

Commit 632b1bb

Browse files
committed
Auto merge of #8485 - thomcc:exclude-default-members, r=ehuss
Apply workspace.exclude to workspace.default-members. Not sure how controversial the feature request was, it seemed easy to do, so I did it (I'm aware it's possible this won't be accepted). Fixes #8460
2 parents 2932932 + b377c4b commit 632b1bb

File tree

2 files changed

+104
-2
lines changed

2 files changed

+104
-2
lines changed

src/cargo/core/workspace.rs

+14-2
Original file line numberDiff line numberDiff line change
@@ -538,14 +538,26 @@ impl<'cfg> Workspace<'cfg> {
538538
None
539539
};
540540

541-
for path in members_paths {
541+
for path in &members_paths {
542542
self.find_path_deps(&path.join("Cargo.toml"), &root_manifest_path, false)?;
543543
}
544544

545545
if let Some(default) = default_members_paths {
546546
for path in default {
547-
let manifest_path = paths::normalize_path(&path.join("Cargo.toml"));
547+
let normalized_path = paths::normalize_path(&path);
548+
let manifest_path = normalized_path.join("Cargo.toml");
548549
if !self.members.contains(&manifest_path) {
550+
// default-members are allowed to be excluded, but they
551+
// still must be referred to by the original (unfiltered)
552+
// members list. Note that we aren't testing against the
553+
// manifest path, both because `members_paths` doesn't
554+
// include `/Cargo.toml`, and because excluded paths may not
555+
// be crates.
556+
let exclude = members_paths.contains(&normalized_path)
557+
&& workspace_config.is_excluded(&normalized_path);
558+
if exclude {
559+
continue;
560+
}
549561
anyhow::bail!(
550562
"package `{}` is listed in workspace’s default-members \
551563
but is not a member.",

tests/testsuite/workspaces.rs

+90
Original file line numberDiff line numberDiff line change
@@ -1628,6 +1628,96 @@ fn exclude_but_also_depend() {
16281628
assert!(p.root().join("foo/bar/target").is_dir());
16291629
}
16301630

1631+
#[cargo_test]
1632+
fn excluded_default_members_still_must_be_members() {
1633+
let p = project()
1634+
.file(
1635+
"Cargo.toml",
1636+
r#"
1637+
[workspace]
1638+
members = ["foo"]
1639+
default-members = ["foo", "bar"]
1640+
exclude = ["bar"]
1641+
"#,
1642+
)
1643+
.file("foo/Cargo.toml", &basic_manifest("foo", "0.1.0"))
1644+
.file("foo/src/lib.rs", "")
1645+
.file("bar/something.txt", "");
1646+
let p = p.build();
1647+
p.cargo("build")
1648+
.with_status(101)
1649+
.with_stderr(
1650+
"\
1651+
error: package `[..]bar` is listed in workspace’s default-members \
1652+
but is not a member.
1653+
",
1654+
)
1655+
.run();
1656+
}
1657+
1658+
#[cargo_test]
1659+
fn excluded_default_members_crate_glob() {
1660+
let p = project()
1661+
.file(
1662+
"Cargo.toml",
1663+
r#"
1664+
[workspace]
1665+
members = ["foo", "bar/*"]
1666+
default-members = ["bar/*"]
1667+
exclude = ["bar/quux"]
1668+
"#,
1669+
)
1670+
.file("foo/Cargo.toml", &basic_manifest("foo", "0.1.0"))
1671+
.file("foo/src/main.rs", "fn main() {}")
1672+
.file("bar/baz/Cargo.toml", &basic_manifest("baz", "0.1.0"))
1673+
.file("bar/baz/src/main.rs", "fn main() {}")
1674+
.file("bar/quux/Cargo.toml", &basic_manifest("quux", "0.1.0"))
1675+
.file("bar/quux/src/main.rs", "fn main() {}");
1676+
1677+
let p = p.build();
1678+
p.cargo("build").run();
1679+
1680+
assert!(p.root().join("target").is_dir());
1681+
assert!(!p.bin("foo").is_file());
1682+
assert!(p.bin("baz").is_file());
1683+
assert!(!p.bin("quux").exists());
1684+
1685+
p.cargo("build --workspace").run();
1686+
assert!(p.root().join("target").is_dir());
1687+
assert!(p.bin("foo").is_file());
1688+
assert!(!p.bin("quux").exists());
1689+
1690+
p.cargo("build").cwd("bar/quux").run();
1691+
assert!(p.root().join("bar/quux/target").is_dir());
1692+
}
1693+
1694+
#[cargo_test]
1695+
fn excluded_default_members_not_crate_glob() {
1696+
let p = project()
1697+
.file(
1698+
"Cargo.toml",
1699+
r#"
1700+
[workspace]
1701+
members = ["foo", "bar/*"]
1702+
default-members = ["bar/*"]
1703+
exclude = ["bar/docs"]
1704+
"#,
1705+
)
1706+
.file("foo/Cargo.toml", &basic_manifest("foo", "0.1.0"))
1707+
.file("foo/src/main.rs", "fn main() {}")
1708+
.file("bar/baz/Cargo.toml", &basic_manifest("baz", "0.1.0"))
1709+
.file("bar/baz/src/main.rs", "fn main() {}")
1710+
.file("bar/docs/readme.txt", "This folder is not a crate!");
1711+
1712+
let p = p.build();
1713+
p.cargo("build").run();
1714+
1715+
assert!(!p.bin("foo").is_file());
1716+
assert!(p.bin("baz").is_file());
1717+
p.cargo("build --workspace").run();
1718+
assert!(p.bin("foo").is_file());
1719+
}
1720+
16311721
#[cargo_test]
16321722
fn glob_syntax() {
16331723
let p = project()

0 commit comments

Comments
 (0)