Expand description
Cross-platform, asynchronous library to run commands in pipelines.
The core concept of this library is to simplify the execution of commands, following these rules:
- 
Commands are executed asynchronously, using the tokio async runtime. 
- 
Commands work on all major platforms (windows, macos and linux). 
- 
Commands can be executed in a pipeline, which means the output of the previous command is send as input of the next one. 
Structs
- Wrapper around command output.
- The command pipeline structure.
- The single command structure.
Enums
- The main command structure.
- The globalErrorenum of the library.
Type Aliases
- The globalResultalias of the library.