Skip to content

Commit 50ce504

Browse files
committed
Add src/tools/x to the main workspace
The original reason to exclude it was so it could run before submodules were initialized. However, those have all been converted to subtrees now, so the entire workspace is always ready to go.
1 parent 03eb454 commit 50ce504

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

Cargo.lock

+4
Original file line numberDiff line numberDiff line change
@@ -6428,6 +6428,10 @@ version = "0.5.5"
64286428
source = "registry+https://github.com/rust-lang/crates.io-index"
64296429
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
64306430

6431+
[[package]]
6432+
name = "x"
6433+
version = "0.1.1"
6434+
64316435
[[package]]
64326436
name = "xattr"
64336437
version = "1.4.0"

Cargo.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ members = [
4646
"src/tools/coverage-dump",
4747
"src/tools/wasm-component-ld",
4848
"src/tools/features-status-dump",
49+
"src/tools/x",
4950
]
5051

5152
exclude = [
@@ -56,11 +57,6 @@ exclude = [
5657
"tests/rustdoc-gui",
5758
# HACK(eddyb) This hardcodes the fact that our CI uses `/checkout/obj`.
5859
"obj",
59-
# The `x` binary is a thin wrapper that calls `x.py`, which initializes
60-
# submodules, before which workspace members cannot be invoked because
61-
# not all `Cargo.toml` files are available, so we exclude the `x` binary,
62-
# so it can be invoked before the current checkout is set up.
63-
"src/tools/x",
6460
]
6561

6662
[profile.release.package.rustc-rayon-core]

src/tools/tidy/src/deps.rs

-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ pub(crate) const WORKSPACES: &[(&str, ExceptionList, Option<(&[&str], &[&str])>,
8080
("src/tools/rust-analyzer", EXCEPTIONS_RUST_ANALYZER, None, &[]),
8181
("src/tools/rustbook", EXCEPTIONS_RUSTBOOK, None, &["src/doc/book", "src/doc/reference"]),
8282
("src/tools/rustc-perf", EXCEPTIONS_RUSTC_PERF, None, &["src/tools/rustc-perf"]),
83-
("src/tools/x", &[], None, &[]),
8483
// tidy-alphabetical-end
8584
];
8685

src/tools/x/Cargo.lock

-7
This file was deleted.

0 commit comments

Comments
 (0)