cargo-liner 0.10.1

Cargo subcommand to install and update binary packages listed in configuration.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Collection of adequate characters to be used as display icons.

/// When nothing to display or needs to be done: already up-to-date.
pub(super) const NONE: char = 'ΓΈ';
/// When the element could not be determined, for example the new version
/// of a package if `skip-check` is used.
pub(super) const UNKNOWN: char = '?';
/// When something needs to be performed: installation or update of a
/// package.
pub(super) const TODO: char = 'πŸ›ˆ';
/// When something was successfully added: new installation of a package.
pub(super) const NEW: char = '+';
/// When something failed.
pub(super) const ERR: char = '✘';
/// When things went right: already up-to-date or successful update.
pub(super) const OK: char = 'βœ”';