89 releases (14 breaking)

0.14.8 Nov 2, 2020
0.14.5 Oct 16, 2020
0.11.8 Jul 4, 2020
0.9.3 Mar 30, 2020
0.3.0 Mar 26, 2019

#1105 in Network programming

Download history 121/week @ 2023-10-20 213/week @ 2023-10-27 107/week @ 2023-11-03 90/week @ 2023-11-10 222/week @ 2023-11-17 204/week @ 2023-11-24 250/week @ 2023-12-01 98/week @ 2023-12-08 207/week @ 2023-12-15 284/week @ 2023-12-22 143/week @ 2023-12-29 100/week @ 2024-01-05 127/week @ 2024-01-12 210/week @ 2024-01-19 177/week @ 2024-01-26 136/week @ 2024-02-02

673 downloads per month
Used in 3 crates (2 directly)

MIT/Apache

405KB
10K SLoC

twitchchat

Documentation Crates Actions

This crate provides a way to interact with Twitch's chat.

Along with parse messages as Rust types, it provides methods for sending messages.

It also provides an 'event' loop which you can use to make a bot.

Opt-in features

By default, this crate depends on zero external crates -- but it makes it rather limited in scope. It can just parse/decode/encode to standard trait types (std::io::{Read, Write}).

To use the AsyncRunner (an async-event loop) you must able the async feature.

NOTE This is a breaking change from 0.12 which had the async stuff enabled by default.

twitchchat = { version = "0.14", features = ["async"] }

To use a specific TcpStream/TlStream refer to the runtime table below.

Serde support

To enable serde support, simply enable the optional serde feature

Runtime

This crate is runtime agonostic. To use..

Read/Write provider Features
async_io async-io
smol smol
async_std async-std
tokio tokio and tokio-util

TLS

If you want TLS supports, enable the above runtime and also enable the cooresponding features:

Read/Write provider Runtime Features TLS backend
async_io async_io "async-tls" rustls
smol smol "async-tls" rustls
async_std async_std "async-tls" rustls
tokio tokio "tokio-util", "tokio-rustls", "webpki-roots" rustls
tokio tokio "tokio-util", "tokio-native-tls", "native-tls" native-tls
tokio tokio "tokio-util", "tokio-openssl", "openssl" openssl

Examples

Using async_io to connect with..

Using async_std to connect with..

Using smol to connect with..

Using tokio to connect with..

How to use the crate as just a message parser(decoder)/encoder

An a simple example of how one could built a bot with this

License

twitchchat is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Dependencies

~0–15MB
~182K SLoC