rustybook 0.2.1

An ergonomic Facebook client in Rust
Documentation
## Rustybook

an ergonomic Facebook client written in Rust

### Features

🚧 work-in-progress, expect API changes

- [x] posts
- [x] videos
- [x] photos
- [ ] stories
- [x] messenger

### Getting started

first you have to initialize a Rustybook client. you can create using default options or use the `Rustybook::builder()` to customize it.

```rust
use rustybook::Rustybook;

// default
let client = Rustybook::new().unwrap();

// builder
let client = Rustybook::builder().build().unwrap();
```

all methods are asynchronous and return a `Result` type.

### Cargo.toml

```toml
[dependencies]
rustybook = "0"
```