2 unstable releases
0.2.0 | Oct 17, 2022 |
---|---|
0.1.2 | Oct 8, 2022 |
#597 in Command-line interface
21 downloads per month
Used in repman
30KB
arch_msgs
arch_msgs provides macros to print messages in the style that is used by Arch Linux scripts. Command line tools written in Rust can print command line messages for errors, warnings, etc. with this crate in the same style as Arch Linux scripts do.
In an Arch Linux installation, corresponding functions are contained in the script /usr/share/makepkg/util/message.sh
and used by other scripts such
as makepkg
or mkarchroot
.
Mapping of Arch Linux functions to the macros of this crate
Message type | Arch Linux function | Corresponding macro of this crate |
---|---|---|
Error | error ... |
error!(...) |
Information | msg2 ... |
info!(...) |
Message | msg ... |
msg!(...) |
Plain message | plain ... |
plain!(...) |
Question | ask ... |
question!(...) |
Warning | warning ... |
warning!(...) |
All macros of this crate have the same signature as println
and print a new line at the end.
Dependencies
~0–9.5MB
~42K SLoC