File tree 3 files changed +17
-0
lines changed
src/tools/run-make-support
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -2526,6 +2526,16 @@ version = "0.2.0"
2526
2526
source = " registry+https://github.com/rust-lang/crates.io-index"
2527
2527
checksum = " 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2528
2528
2529
+ [[package ]]
2530
+ name = " os_pipe"
2531
+ version = " 1.2.1"
2532
+ source = " registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = " 5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982"
2534
+ dependencies = [
2535
+ " libc" ,
2536
+ " windows-sys 0.59.0" ,
2537
+ ]
2538
+
2529
2539
[[package ]]
2530
2540
name = " overload"
2531
2541
version = " 0.1.1"
@@ -3050,6 +3060,7 @@ dependencies = [
3050
3060
" gimli 0.31.1" ,
3051
3061
" libc" ,
3052
3062
" object 0.36.7" ,
3063
+ " os_pipe" ,
3053
3064
" regex" ,
3054
3065
" serde_json" ,
3055
3066
" similar" ,
Original file line number Diff line number Diff line change @@ -14,5 +14,9 @@ build_helper = { path = "../../build_helper" }
14
14
serde_json = " 1.0"
15
15
libc = " 0.2"
16
16
17
+ # FIXME(#137532): replace `os_pipe` with `anonymous_pipe` once it stabilizes and
18
+ # reaches beta.
19
+ os_pipe = " 1.2.1"
20
+
17
21
[lib ]
18
22
crate-type = [" lib" , " dylib" ]
Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ pub use bstr;
40
40
pub use gimli;
41
41
pub use libc;
42
42
pub use object;
43
+ // FIXME(#137532): replace with std `anonymous_pipe` once it stabilizes and reaches beta.
44
+ pub use os_pipe;
43
45
pub use regex;
44
46
pub use serde_json;
45
47
pub use similar;
You can’t perform that action at this time.
0 commit comments