File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ cfg_if! {
66
66
pub mod path;
67
67
#[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
68
68
pub mod pin;
69
+ #[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
70
+ pub mod process;
69
71
70
72
mod unit;
71
73
mod vec;
Original file line number Diff line number Diff line change
1
+ //! A module for working with processes.
2
+ //!
3
+ //! This module is mostly concerned with spawning and interacting with child processes, but it also
4
+ //! provides abort and exit for terminating the current process.
5
+ //!
6
+ //! This is an async version of [`std::process`].
7
+ //!
8
+ //! [`std::process`]: https://doc.rust-lang.org/std/process/index.html
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} ;
You can’t perform that action at this time.
0 commit comments