Add matrix link

This commit is contained in:
asonix 2019-07-30 17:37:43 -05:00
parent c20b3f7f77
commit 17cc4c9f21
2 changed files with 12 additions and 4 deletions

View file

@ -1,6 +1,10 @@
# Actix Webfinger
A library to aid in resolving and providing webfinger objects with the Actix Web web framework.
- [Read the documentation on docs.rs](https://docs.rs/actix-webfinger)
- [Find the crate on crates.io](https://crates.io/crates/actix-webfinger)
- [Join the discussion on Matrix](https://matrix.to/#/!JjjAVnljvJsHxWlnXP:asonix.dog?via=asonix.dog)
The main functionality this crate provides is through the `Webfinger::fetch` method for Actix
Web-based clients, and the `Resolver<S>` trait for Actix Web-based servers.
@ -10,8 +14,8 @@ First, add Actix Webfinger as a dependency
```toml
[dependencies]
actix = "0.8"
actix-web = "1.0.0-beta.3"
actix-webfinger = "0.2.0-beta.2"
actix-web = "1.0.0"
actix-webfinger = "0.2.0"
```
Then use it in your application

View file

@ -7,11 +7,15 @@
//! ### Usage
//! First, add Actix Webfinger as a dependency
//!
//! - [Read the documentation on docs.rs](https://docs.rs/actix-webfinger)
//! - [Find the crate on crates.io](https://crates.io/crates/actix-webfinger)
//! - [Join the discussion on Matrix](https://matrix.to/#/!JjjAVnljvJsHxWlnXP:asonix.dog?via=asonix.dog)
//!
//! ```toml
//! [dependencies]
//! actix = "0.8"
//! actix-web = "1.0.0-beta.3"
//! actix-webfinger = "0.2.0-beta.1"
//! actix-web = "1.0.0"
//! actix-webfinger = "0.2.0"
//! ```
//!
//! Then use it in your application