Crates.io | mirc |
lib.rs | mirc |
version | 0.1.10 |
source | src |
created_at | 2022-06-02 16:02:40.830336 |
updated_at | 2022-06-08 21:37:42.441986 |
description | Simple mirc color formatting for irc clients |
homepage | |
repository | https://github.com/wpbirney/mirc-rs |
max_upload_size | |
id | 598929 |
size | 7,371 |
A simple mirc color code formatter partially inspired by yansi
use mirc::Paint;
irc.send_privmsg("#channel", Paint::red("red text"));
irc.send_privmsg("#channel", format!("Hello: {}", Paint::blue("nick")));
Works on any type that impl's fmt::Display