[]
[](https://crates.io/crates/mastodon-async)
A type-safe, async wrapper around the client API for Mastodon
To add mastodon-async
to your project, add the following to the
[dependencies]
section of your Cargo.toml
toml
mastodon-async = "1.0"
Alternatively, run the following command:
~~~console $ cargo add mastodon-async ~~~
In your Cargo.toml
, make sure you enable the toml
feature:
toml
[dependencies.mastodon-async]
version = "1.0"
features = ["toml"]
```rust,no_run // src/main.rs
use mastodonasync::prelude::*;
use mastodonasync::helpers::toml; // requires features = ["toml"]
use mastodon_async::{helpers::cli, Result};
async fn main() -> Result<()> { let mastodon = if let Ok(data) = toml::from_file("mastodon-data.toml") { Mastodon::from(data) } else { register().await? };
let you = mastodon.verify_credentials().await?;
println!("{:#?}", you);
Ok(())
}
async fn register() -> Result
// Save app data for using on the next run.
toml::to_file(&mastodon.data, "mastodon-data.toml")?;
Ok(mastodon)
} ```
It also supports the Streaming API:
```rust,norun use mastodonasync::{prelude::*, Result, entities::event::Event}; use futures_util::TryStreamExt;
async fn main() -> Result<()> { let client = Mastodon::from(Data::default());
client.stream_user()
.await?
.try_for_each(|event| async move {
match event {
Event::Update(ref status) => { /* .. */ },
Event::Notification(ref notification) => { /* .. */ },
Event::Delete(ref id) => { /* .. */ },
Event::FiltersChanged => { /* .. */ },
}
Ok(())
})
.await?;
Ok(())
} ```