mirc-rs

A simple mirc color code formatter partially inspired by yansi

docs.rs

Usage

```rust use mirc::Paint;

irc.sendprivmsg("#channel", Paint::red("red text")); irc.sendprivmsg("#channel", format!("Hello: {}", Paint::blue("nick"))); ```

Works on any type that impl's fmt::Display