8 releases (5 breaking)

0.6.0 Mar 31, 2024
0.5.0 Mar 1, 2024
0.4.0 Nov 12, 2023
0.3.1 Oct 23, 2023
0.0.2 Sep 30, 2023

#1090 in Network programming

Download history 3/week @ 2024-01-22 19/week @ 2024-02-19 137/week @ 2024-02-26 46/week @ 2024-03-04 112/week @ 2024-03-11 96/week @ 2024-03-18 131/week @ 2024-03-25 76/week @ 2024-04-01

423 downloads per month
Used in rsllm

MIT license

225KB
5K SLoC

tmi-rsDocumentation Latest Version

Blazingly fast 🚀 Rust 🦀 library for interacting with twitch.tv's chat interface.

Quick Start

$ cargo add tmi anyhow tokio -F tokio/full
const CHANNELS: &[&str] = &["#forsen"];

#[tokio::main]
async fn main() -> anyhow::Result<()> {
  let mut client = tmi::Client::anonymous().await?;
  client.join_all(CHANNELS).await?;

  loop {
    let msg = client.recv().await?;
    match msg.as_typed()? {
      tmi::Message::Privmsg(msg) => {
        println!("{}: {}", msg.sender().name(), msg.text());
      }
      tmi::Message::Reconnect => {
        client.reconnect().await?;
        client.join_all(CHANNELS).await?;
      }
      tmi::Message::Ping(ping) => {
        client.pong(&ping).await?;
      }
      _ => {}
    }
  }
}

Performance

Calling the library blazingly fast is done in jest, but it is true that tmi-rs is very fast. tmi-rs is part of the twitch-irc-benchmarks, where it is currently the fastest implementation by a significant margin (nearly 6x faster than the second best Rust implementation). This is because underlying IRC message parser is handwritten and accelerated using SIMD on x86 and ARM. For every other architecture, there is a scalar fallback.

Acknowledgements

Initially based on dank-twitch-irc, and twitch-irc-rs. Lots of test messages were taken directly from twitch-irc-rs.

Dependencies

~0–13MB
~123K SLoC