Brokaw

📰 An NNTP client liberary. More at 11! 📰


GitHub Actions Crates.io version docs.rs docs

Brokaw is a a typed Usenet library for the dozens of people still reading Netnews. It is very much in development and provides no guarantees about stability.

Brokaw (mostly) implements RFC 3977 and several popular extensions.

Getting Started

toml [dependencies] brokaw = "0.0.1"

```rust use brokaw::client::ClientConfig;

fn main() -> Result<(), Box> { let client = ClientConfig::default().connect(("news.mozilla.org", 119))?;

client.capabilities().iter()
    .for_each(|c| println!("{}", c));

Ok(())

} ```

Check out in the repo the examples as well!

Features

Missing Features