File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ default = [
37
37
docs = [" attributes" , " unstable" , " default" ]
38
38
unstable = [
39
39
" std" ,
40
- " async-io"
40
+ " async-io" ,
41
+ " async-process" ,
41
42
]
42
43
attributes = [" async-attributes" ]
43
44
std = [
@@ -74,6 +75,7 @@ once_cell = { version = "1.3.1", optional = true }
74
75
pin-project-lite = { version = " 0.2.0" , optional = true }
75
76
pin-utils = { version = " 0.1.0-alpha.4" , optional = true }
76
77
slab = { version = " 0.4.2" , optional = true }
78
+ async-process = { version = " 1.0.1" , optional = true }
77
79
78
80
# Devdepencency, but they are not allowed to be optional :/
79
81
surf = { version = " 2.0.0" , optional = true }
Original file line number Diff line number Diff line change 7
7
//!
8
8
//! [`std::process`]: https://doc.rust-lang.org/std/process/index.html
9
9
10
- // Re-export structs.
11
- pub use std:: process:: { ExitStatus , Output } ;
12
-
13
- // Re-export functions.
14
- pub use std:: process:: { abort, exit, id} ;
10
+ #[ cfg( feature = "unstable" ) ]
11
+ #[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
12
+ #[ doc( inline) ]
13
+ pub use async_process:: * ;
You can’t perform that action at this time.
0 commit comments