6 releases
0.1.5 | Dec 6, 2021 |
---|---|
0.1.4 | Nov 16, 2021 |
#14 in #irc-client
21 downloads per month
31KB
475 lines
Circe
Circe
is a an IRC crate built to be as minimal as possible. It's currently work-in-progress, and more stuff is on its way!
Getting started
To start using Circe, just add the crate to your Cargo.toml
, and then follow the example below.
use circe::{Client, Config, Command};
fn main() -> Result<(), std::io::Error> {
let config = Config::from_toml("config.toml")?;
let mut client = Client::new(config)?;
client.identify()?;
loop {
if let Ok(ref command) = client.read() {
if let Command::OTHER(line) = command {
print!("{}", line);
}
if let Command::PRIVMSG(channel, message) = command {
println!("PRIVMSG received: {} {}", channel, message);
}
}
}
}
Happy hacking!
Dependencies
~0–9MB
~88K SLoC