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