diff options
| author | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2025-02-24 20:01:49 +0800 |
|---|---|---|
| committer | Jieyou Xu <jieyouxu@outlook.com> | 2025-03-07 19:08:11 +0800 |
| commit | d47e5a371bb3a4353587e95bf4ee271a273d1326 (patch) | |
| tree | 3d3fdabb0266e238753de34386ebf315ad4cfa5e /src | |
| parent | 9befcfd0f4671675341e770c5bb3bf696c7aa670 (diff) | |
| download | rust-d47e5a371bb3a4353587e95bf4ee271a273d1326.tar.gz rust-d47e5a371bb3a4353587e95bf4ee271a273d1326.zip | |
Temporarily depend on `os_pipe` in `run-make-support` and re-export it
For `broken-pipe-no-ice` until std `anonymous_pipe` stabilizes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/run-make-support/Cargo.toml | 4 | ||||
| -rw-r--r-- | src/tools/run-make-support/src/lib.rs | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/run-make-support/Cargo.toml b/src/tools/run-make-support/Cargo.toml index 15ed03ad5c2..f9beffec750 100644 --- a/src/tools/run-make-support/Cargo.toml +++ b/src/tools/run-make-support/Cargo.toml @@ -14,5 +14,9 @@ build_helper = { path = "../../build_helper" } serde_json = "1.0" libc = "0.2" +# FIXME(#137532): replace `os_pipe` with `anonymous_pipe` once it stabilizes and +# reaches beta. +os_pipe = "1.2.1" + [lib] crate-type = ["lib", "dylib"] diff --git a/src/tools/run-make-support/src/lib.rs b/src/tools/run-make-support/src/lib.rs index d40ec9c4116..c846a2d53e5 100644 --- a/src/tools/run-make-support/src/lib.rs +++ b/src/tools/run-make-support/src/lib.rs @@ -40,6 +40,8 @@ pub use bstr; pub use gimli; pub use libc; pub use object; +// FIXME(#137532): replace with std `anonymous_pipe` once it stabilizes and reaches beta. +pub use os_pipe; pub use regex; pub use serde_json; pub use similar; |
