From 17cc4c9f21f3a830554209a70d85f96a1245eac2 Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 30 Jul 2019 17:37:43 -0500 Subject: [PATCH] Add matrix link --- README.md | 8 ++++++-- src/lib.rs | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 40827f2..78056b6 100644 --- a/README.md +++ b/README.md @@ -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` 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 diff --git a/src/lib.rs b/src/lib.rs index 1933c8f..602931b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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