File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 39
39
//! }
40
40
//! ```
41
41
//!
42
- //! ## Relevant crates
42
+ //! ## Relevant CLI crates
43
43
//!
44
44
//! Other crates that might be useful in testing command line programs.
45
45
//! - [duct][duct] for orchestrating multiple processes.
52
52
//! [assert_cmd]: https://crates.io/crates/assert_cmd
53
53
//! [commandspec]: https://crates.io/crates/commandspec
54
54
//!
55
- //! ## Related crates
55
+ //! ## Alternative crates
56
56
//!
57
- //! Some crates that fill a similar role include:
57
+ //! Crates considered when making this one include:
58
58
//! - [sysexit][sysexit]
59
59
//! - Uses an enum, making certain states unrepresentable
60
60
//! - Includes signals
61
61
//! - Integrates with `std::process` and `std::io::Error`
62
62
//! - Doesn't integrate with `main`
63
+ //! - [sysexits][sysexits]
64
+ //! - Uses an enum, making certain states unrepresentable
65
+ //! - Doesn't include signals
66
+ //! - Doesn't integrate with `main`, `std::process`, or `std::io::Error`
63
67
//! - [exit-code][exit-code]
64
68
//! - `i32` constants and helper methods
65
69
//! - Doesn't include signals
You can’t perform that action at this time.
0 commit comments