File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ cfg_if! {
6666 pub mod path;
6767 #[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
6868 pub mod pin;
69+ #[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
70+ pub mod process;
6971
7072 mod unit;
7173 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