#messages #msg #console #printing #stderr #stdout #status

fyi_msg

Simple ANSI-formatted, prefixed messages for console printing

49 releases (4 stable)

new 1.2.1 Nov 14, 2024
1.1.1 Oct 17, 2024
0.14.1 Sep 27, 2024
0.13.6 May 27, 2024
0.8.1 Jun 17, 2021

#113 in Command-line interface

Download history 113/week @ 2024-07-28 3/week @ 2024-08-04 7/week @ 2024-08-11 154/week @ 2024-09-01 8/week @ 2024-09-08 20/week @ 2024-09-15 148/week @ 2024-09-22 46/week @ 2024-09-29 172/week @ 2024-10-06 192/week @ 2024-10-13 25/week @ 2024-10-20 12/week @ 2024-10-27 100/week @ 2024-11-03 142/week @ 2024-11-10

288 downloads per month

WTFPL license

135KB
2.5K SLoC

FYI Msg

docs.rs
crates.io ci deps.rs
license

This crate contains the objects providing the heart of the FYI command line application, namely Msg, a simple struct for status-like messages that can be easily printed to STDOUT or STDERR.

Examples

use fyi_msg::{Msg, MsgKind};

// One way.
Msg::new(MsgKind::Success, "You did it!")
    .with_newline(true)
    .print();

// Another equivalent way.
Msg::success("You did it!").print();

For more usage examples, check out the examples/msg demo, which covers just about every common use case.

Macros

Macro Equivalent
confirm!() Msg::new(MsgKind::Confirm, "Some question…").prompt()

Optional Features

Feature Description
fitted Enables Msg::fitted for obtaining a slice trimmed to a specific display width.
progress Enables Progless, a thread-safe CLI progress bar displayer.
timestamps Enables timestamp-related methods and flags like Msg::with_timestamp.

Dependencies

~0.2–9MB
~93K SLoC